Compare commits

..

27 Commits

Author SHA1 Message Date
jkunz f5371007f1 v3.0.8 2026-05-02 10:36:21 +00:00
jkunz 60607ce021 fix(gulp-function): correct forFirst execution behavior, improve async error handling, and modernize package metadata 2026-05-02 10:36:21 +00:00
philkunz edcb1d114f update description 2024-05-29 14:11:02 +02:00
philkunz 3ba5685914 update tsconfig 2024-04-14 13:35:59 +02:00
philkunz cb0f810201 update npmextra.json: githost 2024-04-01 21:33:06 +02:00
philkunz 94a5d3022e update npmextra.json: githost 2024-04-01 19:57:21 +02:00
philkunz 919fcfd9f5 update npmextra.json: githost 2024-03-30 21:46:17 +01:00
philkunz 660ffd8880 3.0.7 2024-03-10 23:30:24 +01:00
philkunz 1744e9b338 fix(core): update 2024-03-10 23:30:23 +01:00
philkunz b738a360cc 3.0.6 2024-03-10 23:29:57 +01:00
philkunz 0c703cb5c3 fix(core): update 2024-03-10 23:29:56 +01:00
philkunz 27ee7a532a switch to new org scheme 2023-07-10 23:58:45 +02:00
philkunz 29d439ce0d switch to new org scheme 2023-07-10 02:41:17 +02:00
philkunz faa4bb88a8 3.0.5 2023-06-30 15:50:09 +02:00
philkunz a95319d99f fix(core): update 2023-06-30 15:50:08 +02:00
philkunz e7c0e1228b 3.0.4 2020-01-18 16:35:55 +00:00
philkunz 9586f34d64 fix(core): update 2020-01-18 16:35:55 +00:00
philkunz 6300845ec8 3.0.3 2020-01-18 12:19:49 +00:00
philkunz 2316a983ed fix(core): update 2020-01-18 12:19:48 +00:00
philkunz a1fa6b751e 3.0.2 2020-01-18 12:19:28 +00:00
philkunz 5792a13b01 fix(core): update 2020-01-18 12:19:27 +00:00
philkunz 1008c3f103 3.0.1 2018-12-09 01:34:30 +01:00
philkunz c366bde211 fix(npm): permissions 2018-12-09 01:34:30 +01:00
philkunz e22c6764b7 3.0.0 2018-12-09 01:27:25 +01:00
philkunz 50836eab06 BREAKING CHANGE(npm scope): update 2018-12-09 01:27:24 +01:00
philkunz 077834f7a4 2.2.16 2018-12-09 01:19:44 +01:00
philkunz ca348b5475 fix(license): switch to company name from brand name 2018-12-09 01:19:44 +01:00
22 changed files with 9989 additions and 4332 deletions
+66
View File
@@ -0,0 +1,66 @@
name: Default (not tags)
on:
push:
tags-ignore:
- '**'
env:
IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:npmci
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@gitea.lossless.digital/${{gitea.repository}}.git
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
jobs:
security:
runs-on: ubuntu-latest
continue-on-error: true
container:
image: ${{ env.IMAGE }}
steps:
- uses: actions/checkout@v3
- name: Install pnpm and npmci
run: |
pnpm install -g pnpm
pnpm install -g @shipzone/npmci
- name: Run npm prepare
run: npmci npm prepare
- name: Audit production dependencies
run: |
npmci command npm config set registry https://registry.npmjs.org
npmci command pnpm audit --audit-level=high --prod
continue-on-error: true
- name: Audit development dependencies
run: |
npmci command npm config set registry https://registry.npmjs.org
npmci command pnpm audit --audit-level=high --dev
continue-on-error: true
test:
if: ${{ always() }}
needs: security
runs-on: ubuntu-latest
container:
image: ${{ env.IMAGE }}
steps:
- uses: actions/checkout@v3
- name: Test stable
run: |
npmci node install stable
npmci npm install
npmci npm test
- name: Test build
run: |
npmci node install stable
npmci npm install
npmci npm build
+124
View File
@@ -0,0 +1,124 @@
name: Default (tags)
on:
push:
tags:
- '*'
env:
IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:npmci
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@gitea.lossless.digital/${{gitea.repository}}.git
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
jobs:
security:
runs-on: ubuntu-latest
continue-on-error: true
container:
image: ${{ env.IMAGE }}
steps:
- uses: actions/checkout@v3
- name: Prepare
run: |
pnpm install -g pnpm
pnpm install -g @shipzone/npmci
npmci npm prepare
- name: Audit production dependencies
run: |
npmci command npm config set registry https://registry.npmjs.org
npmci command pnpm audit --audit-level=high --prod
continue-on-error: true
- name: Audit development dependencies
run: |
npmci command npm config set registry https://registry.npmjs.org
npmci command pnpm audit --audit-level=high --dev
continue-on-error: true
test:
if: ${{ always() }}
needs: security
runs-on: ubuntu-latest
container:
image: ${{ env.IMAGE }}
steps:
- uses: actions/checkout@v3
- name: Prepare
run: |
pnpm install -g pnpm
pnpm install -g @shipzone/npmci
npmci npm prepare
- name: Test stable
run: |
npmci node install stable
npmci npm install
npmci npm test
- name: Test build
run: |
npmci node install stable
npmci npm install
npmci npm build
release:
needs: test
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
container:
image: ${{ env.IMAGE }}
steps:
- uses: actions/checkout@v3
- name: Prepare
run: |
pnpm install -g pnpm
pnpm install -g @shipzone/npmci
npmci npm prepare
- name: Release
run: |
npmci node install stable
npmci npm publish
metadata:
needs: test
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
container:
image: ${{ env.IMAGE }}
continue-on-error: true
steps:
- uses: actions/checkout@v3
- name: Prepare
run: |
pnpm install -g pnpm
pnpm install -g @shipzone/npmci
npmci npm prepare
- name: Code quality
run: |
npmci command npm install -g typescript
npmci npm install
- name: Trigger
run: npmci trigger
- name: Build docs and upload artifacts
run: |
npmci node install stable
npmci npm install
pnpm install -g @git.zone/tsdoc
npmci command tsdoc
continue-on-error: true
+16 -1
View File
@@ -1,5 +1,20 @@
node_modules/ .nogit/
# artifacts
coverage/ coverage/
public/ public/
pages/ pages/
# installs
node_modules/
# caches
.yarn/
.cache/
.rpt2_cache
# builds
dist/
dist_*/
# custom
-125
View File
@@ -1,125 +0,0 @@
# gitzone standard
image: hosttoday/ht-docker-node:npmci
cache:
paths:
- .npmci_cache/
key: "$CI_BUILD_STAGE"
stages:
- security
- test
- release
- metadata
# ====================
# security stage
# ====================
mirror:
stage: security
script:
- npmci git mirror
tags:
- docker
- notpriv
snyk:
stage: security
script:
- npmci npm prepare
- npmci command npm install -g snyk
- npmci command npm install --ignore-scripts
- npmci command snyk test
tags:
- docker
- notpriv
# ====================
# test stage
# ====================
testLTS:
stage: test
script:
- npmci npm prepare
- npmci node install lts
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
- notpriv
testSTABLE:
stage: test
script:
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
- notpriv
release:
stage: release
script:
- npmci node install stable
- npmci npm publish
only:
- tags
tags:
- docker
- notpriv
# ====================
# metadata stage
# ====================
codequality:
stage: metadata
image: docker:stable
allow_failure: true
services:
- docker:stable-dind
script:
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
- docker run
--env SOURCE_CODE="$PWD"
--volume "$PWD":/code
--volume /var/run/docker.sock:/var/run/docker.sock
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
artifacts:
paths: [codeclimate.json]
tags:
- docker
- priv
trigger:
stage: metadata
script:
- npmci trigger
only:
- tags
tags:
- docker
- notpriv
pages:
image: hosttoday/ht-docker-node:npmci
stage: metadata
script:
- npmci command npm install -g typedoc typescript
- npmci npm prepare
- npmci npm install
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
tags:
- docker
- notpriv
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
allow_failure: true
+39
View File
@@ -0,0 +1,39 @@
{
"@ship.zone/szci": {
"npmGlobalTools": [],
"npmRegistryUrl": "registry.npmjs.org"
},
"@git.zone/cli": {
"projectType": "npm",
"module": {
"githost": "code.foss.global",
"gitscope": "push.rocks",
"gitrepo": "gulp-function",
"shortDescription": "Function execution for Gulp streams",
"description": "A Gulp plugin to execute functions within a Gulp task pipeline.",
"npmPackagename": "@push.rocks/gulp-function",
"license": "MIT",
"keywords": [
"gulp",
"plugin",
"task automation",
"stream manipulation",
"async function execution",
"pipeline",
"build tool",
"JavaScript",
"TypeScript"
]
},
"release": {
"registries": [
"https://verdaccio.lossless.digital",
"https://registry.npmjs.org"
],
"accessLevel": "public"
}
},
"@git.zone/tsdoc": {
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [LICENSE](./LICENSE) file.\n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH or third parties, and are not included within the scope of the MIT license granted herein.\n\nUse of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines or the guidelines of the respective third-party owners, and any usage must be approved in writing. Third-party trademarks used herein are the property of their respective owners and used only in a descriptive manner, e.g. for an implementation of an API or similar.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District Court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
}
}
+11
View File
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "npm test",
"name": "Run npm test",
"request": "launch",
"type": "node-terminal"
}
]
}
+26
View File
@@ -0,0 +1,26 @@
{
"json.schemas": [
{
"fileMatch": ["/npmextra.json"],
"schema": {
"type": "object",
"properties": {
"npmci": {
"type": "object",
"description": "settings for npmci"
},
"gitzone": {
"type": "object",
"description": "settings for gitzone",
"properties": {
"projectType": {
"type": "string",
"enum": ["website", "element", "service", "npm", "wcc"]
}
}
}
}
}
}
]
}
-61
View File
@@ -1,61 +0,0 @@
# gulp-function
accepts a function call as parameter to execute in gulp pipeline
## Availabililty
[![npm](https://pushrocks.gitlab.io/assets/repo-button-npm.svg)](https://www.npmjs.com/package/gulp-function)
[![git](https://pushrocks.gitlab.io/assets/repo-button-git.svg)](https://GitLab.com/pushrocks/gulp-function)
[![git](https://pushrocks.gitlab.io/assets/repo-button-mirror.svg)](https://github.com/pushrocks/gulp-function)
[![docs](https://pushrocks.gitlab.io/assets/repo-button-docs.svg)](https://pushrocks.gitlab.io/gulp-function/)
## Status for master
[![build status](https://GitLab.com/pushrocks/gulp-function/badges/master/build.svg)](https://GitLab.com/pushrocks/gulp-function/commits/master)
[![coverage report](https://GitLab.com/pushrocks/gulp-function/badges/master/coverage.svg)](https://GitLab.com/pushrocks/gulp-function/commits/master)
[![npm downloads per month](https://img.shields.io/npm/dm/gulp-function.svg)](https://www.npmjs.com/package/gulp-function)
[![Dependency Status](https://david-dm.org/pushrocks/gulp-function.svg)](https://david-dm.org/pushrocks/gulp-function)
[![TypeScript](https://img.shields.io/badge/TypeScript-2.x-blue.svg)](https://nodejs.org/dist/latest-v6.x/docs/api/)
[![node](https://img.shields.io/badge/node->=%206.x.x-blue.svg)](https://nodejs.org/dist/latest-v6.x/docs/api/)
[![JavaScript Style Guide](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/)
### Usage
```typescript
import gulp = require('gulp');
import gulpFunction from 'gulp-function'; // default ES6 export
// import {forFirst, forEach, atEnd} from 'gulp-function'
let myAsyncFunction = async (file, enc) => {
// await some async stuff
};
gulp.task('gulpTest', function() {
let stream = gulp
.src('./mydir/*.something')
.pipe(gulpFunction(myAsyncFunction, 'forEach')) //read the notes below
// .pipe(forEach(myAsyncFunction)) // if imported as >> import { forEach } from 'gulp-function' <<
.pipe(gulp.dest('./build/'));
return stream; // by returning the stream gulp knows when our task has finished.
});
```
### Notes
- The first argument of gulpFunction can also be an **array of multiple functionnames**.
Each function can return a promise. The pipe stop will finish when every promise is fullfilled.
When providing an array of functions be careful with modifying the file object -> race condition
- The second argument can be empty, it defaults to "forEach"
- The following options are available:
- "forFirst" - executes when first chunk/vinylfile of the stream reaches the pipestop.
file is pushed further down the line when function's returned promise is fullfilled.
- "forEach" - executes like "forFirst" but with every chunk/vinylfile in the stream;
- "atEnd" - executes after all chunks have passed and are processed in full.
That means the stream's "finish" event fires **before "atLast" is executed**!!!
For further information read the linked docs at the top of this README.
> MIT licensed | **&copy;** [Lossless GmbH](https://lossless.gmbh)
> | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
[![repo-footer](https://pushrocks.gitlab.io/assets/repo-footer.svg)](https://push.rocks)
+199
View File
@@ -0,0 +1,199 @@
# Changelog
## 2026-05-02 - 3.0.8 - fix(gulp-function)
correct forFirst execution behavior, improve async error handling, and modernize package metadata
- fixes `forFirst` so the callback runs only for the first file instead of every file after the first
- normalizes thrown values into `Error` instances and propagates async failures through the Gulp stream
- adds stronger TypeScript typings, updates tests, and refreshes package/configuration metadata for the current toolchain
## 2024-03-10 - 3.0.7 - maintenance
Release 3.0.7 with repository and configuration maintenance updates.
- Updated package metadata and description
- Updated TypeScript configuration
- Updated npm host configuration
## 2024-03-10 - 3.0.6 - core
Applied a core update fix.
- fix(core): update
## 2023-06-30 - 3.0.5 - maintenance
Released 3.0.5 with a core fix and organization migration updates.
- fix(core): update
- Switched to the new organization scheme
## 2020-01-18 - 3.0.4 - core
Applied a core update fix.
- fix(core): update
## 2020-01-18 - 3.0.3 - core
Applied a core update fix.
- fix(core): update
## 2020-01-18 - 3.0.2 - core
Applied a core update fix.
- fix(core): update
## 2018-12-09 - 3.0.1 - core
Applied a core update fix.
- fix(core): update
## 2018-12-09 - 3.0.0 - npm
Updated npm package permissions.
- fix(npm): permissions
## 2018-12-09 - 2.2.16 - npm scope
Introduced a breaking npm scope change.
- BREAKING CHANGE(npm scope): update
## 2018-12-09 - 2.2.15 - license
Updated licensing metadata.
- Switched from brand name to company name in license information
## 2018-01-29 - 2.2.14 - core
Released 2.2.14 with standards updates and documentation fixes.
- Updated core to latest gitzone standards
- Fixed sample code in README
## 2017-04-30 - 2.2.13 to 2.2.11 - maintenance
Rolled up minor maintenance and documentation updates across these releases.
- Updated CI configuration
- Updated README
- Updated project standards
## 2017-04-30 - 2.2.10 to 2.2.6 - mixed
Delivered a mix of dependency, documentation, and behavior improvements.
- Updated dependencies
- Updated docs, README, and .gitignore
- Fixed pipe cleanup behavior
## 2016-11-25 - 2.2.5 to 2.2.1 - core
Shipped iterative fixes and API improvements in the 2.2.x line.
- Fixed `.forEach` return behavior
- Added `.forEach`, `.atEnd`, and `.forFirst`
- Switched to ES6 default import
- Included testing and documentation improvements as part of the release series
## 2016-10-18 - 2.0.0 - ci
Updated CI base image for the 2.0.0 release.
- Fixed base image for CI
## 2016-06-11 - 1.3.6 - core
Added support for modifying the file object.
- Added possibility to modify the file object
## 2016-06-03 - 1.3.5 to 1.3.1 - maintenance
Bundled dependency, CI, and documentation maintenance updates.
- Updated GitLab CI configuration
- Switched to npmts-g
- Updated README and removed Travis
- Fixed a missing dependency
- Added GitLab CI
- Updated dependencies
## 2016-04-07 - 1.3.0 - dependencies
Adjusted development dependencies.
- Added beautylog back as a dev dependency
## 2016-04-04 - 1.2.5 to 1.2.1 - maintenance
Bundled package, dependency, and README fixes across patch releases.
- Fixed package.json
- Updated dependencies
- Fixed README issues
## 2016-03-26 - 1.2.0 - core
Delivered functional fixes and dependency cleanup.
- Fixed issue #3
- Removed beautylog dependency
- Updated dependencies and coverage badge configuration
## 2016-02-14 - 1.1.1 - core
Added new callback handling functionality.
- Added `forFirst`
- Included badge and README updates in this release cycle
## 2016-02-14 - 1.1.0 - dependencies
Updated promise handling dependency.
- Updated promise
## 2016-02-12 - 1.0.4 - core
Improved async function handling.
- Now accepts promises as return values of supplied functions
- Included README updates
## 2016-02-12 - 1.0.3 - configuration
Added npmts configuration.
- Added `npmts.json`
## 2016-02-02 - 1.0.2 - tests
Improved test coverage.
- Added better tests and coverage
## 2016-02-01 - 1.0.1 to 1.0.0 - maintenance
Initial stable release cycle with tooling and dependency updates.
- Updated dependencies
- Updated Travis configuration
- Updated npmts
## 2015-11-30 - 0.0.12 to 0.0.8 - maintenance
Early project setup and package maintenance updates.
- Updated keywords and package metadata
- Cleaned up project structure
- Updated dependencies
## 2015-10-26 - 0.0.7 - core
Added callback support to `atEnd`.
- Added callback to `function() atEnd`
- Included badge updates
## 2015-10-26 - 0.0.6 to 0.0.4 - tooling
Established release automation and tooling.
- Added automatic version release through Travis for npm
## 2015-10-25 - 0.0.3 - tests
Improved early project quality and stability.
- Added tests
- Included a small fix
## 2015-09-17 - 0.0.2 - core
Made the package functional and added initial project files.
- Now working
- Added `.gitignore`
- Added README
## 2015-09-04 - 0.0.1 - release
Initial package publication and CI setup.
- Published npm package
- Added Travis CI
+1 -1
View File
@@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2015 Push.Rocks Copyright (c) 2022 Task Venture Capital GmbH <hello@task.vc>
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal
+35 -6
View File
@@ -1,10 +1,39 @@
{ {
"npmts": { "@ship.zone/szci": {
"mode": "default" "npmGlobalTools": [],
"npmRegistryUrl": "registry.npmjs.org"
}, },
"npmci": { "@git.zone/cli": {
"npmGlobalTools": [ "projectType": "npm",
"npmts" "module": {
] "githost": "code.foss.global",
"gitscope": "push.rocks",
"gitrepo": "gulp-function",
"shortDescription": "Function execution for Gulp streams",
"description": "A Gulp plugin to execute functions within a Gulp task pipeline.",
"npmPackagename": "@push.rocks/gulp-function",
"license": "MIT",
"keywords": [
"gulp",
"plugin",
"task automation",
"stream manipulation",
"async function execution",
"pipeline",
"build tool",
"JavaScript",
"TypeScript"
]
},
"release": {
"registries": [
"https://verdaccio.lossless.digital",
"https://registry.npmjs.org"
],
"accessLevel": "public"
}
},
"@git.zone/tsdoc": {
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [LICENSE](./LICENSE) file.\n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH or third parties, and are not included within the scope of the MIT license granted herein.\n\nUse of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines or the guidelines of the respective third-party owners, and any usage must be approved in writing. Third-party trademarks used herein are the property of their respective owners and used only in a descriptive manner, e.g. for an implementation of an API or similar.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District Court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
} }
} }
-4015
View File
File diff suppressed because it is too large Load Diff
+55 -30
View File
@@ -1,42 +1,67 @@
{ {
"name": "gulp-function", "name": "@push.rocks/gulp-function",
"version": "2.2.15", "version": "3.0.8",
"description": "accepts a function call as parameter to execute in gulp pipeline", "private": false,
"main": "dist/index.js", "description": "A Gulp plugin to execute functions within a Gulp task pipeline.",
"typings": "dist/index.d.ts", "exports": {
".": "./dist_ts/index.js"
},
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
"license": "MIT",
"scripts": { "scripts": {
"test": "(tstest test/)", "test": "tstest test/",
"build": "(tsbuild)" "build": "tsbuild",
"buildDocs": "tsdoc"
},
"dependencies": {
"through2": "^4.0.2"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/gulp": "^4.0.18",
"@types/node": "^25.6.0",
"@types/through2": "^2.0.41",
"gulp": "^5.0.1"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://gitlab.com/pushrocks/gulp-function.git" "url": "https://code.foss.global/push.rocks/gulp-function.git"
}, },
"keywords": [ "keywords": [
"gulpplugin",
"gulp", "gulp",
"function", "plugin",
"pushrocks" "task automation",
"stream manipulation",
"async function execution",
"pipeline",
"build tool",
"JavaScript",
"TypeScript"
], ],
"author": "Lossless GmbH <office@lossless.com> (https://lossless.com)",
"license": "MIT",
"bugs": { "bugs": {
"url": "https://gitlab.com/pushrocks/gulp-function/issues" "url": "https://code.foss.global/push.rocks/gulp-function/issues"
}, },
"homepage": "https://gitlab.com/pushrocks/gulp-function", "homepage": "https://code.foss.global/push.rocks/gulp-function",
"dependencies": { "files": [
"@pushrocks/smartpromise": "^2.0.5", "ts/**/*",
"@types/through2": "^2.0.32", "ts_web/**/*",
"through2": "^3.0.0" "dist/**/*",
}, "dist_*/**/*",
"devDependencies": { "dist_ts/**/*",
"@gitzone/tsbuild": "^2.1.3", "dist_ts_web/**/*",
"@gitzone/tstest": "^1.0.18", "assets/**/*",
"@pushrocks/smartgulp": "^2.0.1", "cli.js",
"@pushrocks/tapbundle": "^3.0.7", ".smartconfig.json",
"gulp": "^3.9.1", "license",
"tslint": "^5.11.0", "npmextra.json",
"tslint-config-prettier": "^1.17.0" "readme.md"
}, ],
"private": true "browserslist": [
"last 1 chrome versions"
]
} }
+9129
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -0,0 +1 @@
+150
View File
@@ -0,0 +1,150 @@
# @push.rocks/gulp-function
`@push.rocks/gulp-function` is a tiny, typed Gulp plugin for running your own sync or async functions inside a Gulp object stream without changing the files that flow through it. Use it when a pipeline needs custom side effects: logging, validation, deployment calls, metrics, cache invalidation, or any project-specific action that does not deserve a full custom Gulp plugin.
## Issue Reporting and Security
For reporting bugs, issues, or security vulnerabilities, please visit [community.foss.global/](https://community.foss.global/). This is the central community hub for all issue reporting. Developers who sign and comply with our contribution agreement and go through identification can also get a [code.foss.global/](https://code.foss.global/) account to submit Pull Requests directly.
## Install
```bash
pnpm add -D @push.rocks/gulp-function
```
## What It Does
Gulp streams are great at moving Vinyl files through transforms. Sometimes you need to run code at a specific point in that stream while leaving every file untouched. `@push.rocks/gulp-function` gives you three small helpers for that:
- `forEach(fn)`: run `fn(file, enc)` for every file and pass the file on after the function resolves.
- `forFirst(fn)`: run `fn(file, enc)` only for the first file and pass all files through.
- `atEnd(fn)`: pass all files through immediately, then run `fn(null, null)` once when the stream flushes.
The default export exposes the same behavior as `gulpFunction(fnOrFns, mode)`, where `mode` is `'forEach'`, `'forFirst'`, or `'atEnd'`. The default export also accepts an array of functions and runs them in parallel for the selected mode.
## Quick Start
```ts
import gulp from 'gulp';
import { forEach } from '@push.rocks/gulp-function';
interface IVinylFile {
path: string;
relative: string;
}
export const logFiles = () =>
gulp.src('./src/**/*.ts')
.pipe(forEach<IVinylFile>(async (file) => {
if (!file) return;
console.log(`Processing ${file.relative}`);
}))
.pipe(gulp.dest('./dist'));
```
The function can return a promise or a plain value. If it throws or rejects, the transform reports the error to Gulp and the pipeline fails normally.
## API
### `forEach(func)`
Runs `func(file, enc)` for every Vinyl file in the stream. The file is pushed onward only after `func` has completed.
```ts
import { forEach } from '@push.rocks/gulp-function';
gulp.src('./content/**/*.md')
.pipe(forEach(async (file) => {
console.log(file?.relative);
}))
.pipe(gulp.dest('./public'));
```
### `forFirst(func)`
Runs `func(file, enc)` only for the first file. This is useful for one-time setup that should still be triggered by a stream.
```ts
import { forFirst } from '@push.rocks/gulp-function';
gulp.src('./assets/**/*')
.pipe(forFirst(async (file) => {
console.log(`Starting asset pipeline with ${file?.relative}`);
}))
.pipe(gulp.dest('./dist/assets'));
```
### `atEnd(func)`
Runs `func(null, null)` once after all files have passed through. This is ideal for final notifications, summary output, or flushing external state.
```ts
import { atEnd, forEach } from '@push.rocks/gulp-function';
let fileCount = 0;
gulp.src('./src/**/*')
.pipe(forEach(() => {
fileCount++;
}))
.pipe(atEnd(async () => {
console.log(`Handled ${fileCount} files`);
}))
.pipe(gulp.dest('./dist'));
```
### Default Export
```ts
import gulpFunction from '@push.rocks/gulp-function';
gulp.src('./src/**/*')
.pipe(gulpFunction([
async (file) => console.log(file?.relative),
async () => console.log('side effect complete')
], 'forEach'));
```
Supported TypeScript exports:
- `TExecutionMode`: `'forEach' | 'forFirst' | 'atEnd'`
- `TGulpFunctionEncoding`: `BufferEncoding | string | null`
- `TGulpFunctionResult`: `PromiseLike<unknown> | unknown`
- `IPromiseFunction<TFile = unknown>`: `(file?: TFile | null, enc?: TGulpFunctionEncoding) => TGulpFunctionResult`
## Behavior Notes
- Files are passed through unchanged.
- Async functions are awaited before the relevant transform or flush callback completes.
- `forEach` and `forFirst` receive the current file and stream encoding.
- `atEnd` receives `null` for both arguments because no single file is active during flush.
- Arrays passed to the default export are executed with `Promise.all`.
- Non-`Error` thrown values are normalized to `Error` instances before being passed to Gulp.
## Testing and Build
```bash
pnpm test
pnpm run build
```
## License and Legal Information
This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [LICENSE](./LICENSE) file.
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
### Trademarks
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH or third parties, and are not included within the scope of the MIT license granted herein.
Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines or the guidelines of the respective third-party owners, and any usage must be approved in writing. Third-party trademarks used herein are the property of their respective owners and used only in a descriptive manner, e.g. for an implementation of an API or similar.
### Company Information
Task Venture Capital GmbH
Registered at District Court Bremen HRB 35230 HB, Germany
For any legal inquiries or further information, please contact us via email at hello@task.vc.
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
+58
View File
@@ -0,0 +1,58 @@
import { finished } from 'node:stream/promises';
import { expect, tap } from '@git.zone/tstest/tapbundle';
import gulp from 'gulp';
import * as gulpFunction from '../ts/index.js';
interface ITestVinylFile {
relative: string;
}
tap.test('should run through smoothly with forEach', async () => {
const processedFiles: string[] = [];
const stream = gulp.src('./test/testfiles/*.md').pipe(
gulpFunction.forEach<ITestVinylFile>(async (fileArg) => {
if (fileArg) {
processedFiles.push(fileArg.relative);
}
})
);
stream.resume();
await finished(stream);
expect(processedFiles).toHaveLength(18);
});
tap.test('should run only once with forFirst', async () => {
const processedFiles: string[] = [];
const stream = gulp.src('./test/testfiles/*.md').pipe(
gulpFunction.forFirst<ITestVinylFile>(async (fileArg) => {
if (fileArg) {
processedFiles.push(fileArg.relative);
}
})
);
stream.resume();
await finished(stream);
expect(processedFiles).toHaveLength(1);
});
tap.test('should run once after all files with atEnd', async () => {
let atEndCounter = 0;
let passthroughCounter = 0;
const stream = gulp.src('./test/testfiles/*.md').pipe(
gulpFunction.atEnd(async () => {
atEndCounter++;
})
);
stream.on('data', () => {
passthroughCounter++;
});
await finished(stream);
expect(atEndCounter).toEqual(1);
expect(passthroughCounter).toEqual(18);
});
export default tap.start();
-35
View File
@@ -1,35 +0,0 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartgulp from '@pushrocks/smartgulp';
let gulp = require('gulp');
import * as gulpFunction from '../ts/index';
import * as smartpromise from '@pushrocks/smartpromise';
tap.test('should run through smoothly with ' + "'forEach'", async tools => {
let done = smartpromise.defer();
let counter = 0;
gulp.src('./test/testfiles/*.md').pipe(
gulpFunction.forEach(async () => {
counter++;
if (counter === 2) {
done.resolve();
}
})
);
await done.promise;
});
tap.test('should run through smoothly with ' + "'forEach'", async tools => {
let done = smartpromise.defer();
let counter = 0;
smartgulp.src(['./test/testfiles/*.md']).pipe(
gulpFunction.atEnd(async () => {
console.log('atEnd');
done.resolve();
})
);
await done.promise;
});
tap.start();
+8
View File
@@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@push.rocks/gulp-function',
version: '3.0.8',
description: 'A Gulp plugin to execute functions within a Gulp task pipeline.'
}
+54 -40
View File
@@ -1,86 +1,100 @@
import * as smartpromise from '@pushrocks/smartpromise'; import type { Transform } from 'node:stream';
import * as through2 from 'through2'; import through2 from 'through2';
import { Transform } from 'stream';
export type TExecutionMode = 'forEach' | 'forFirst' | 'atEnd'; export type TExecutionMode = 'forEach' | 'forFirst' | 'atEnd';
export type TGulpFunctionEncoding = BufferEncoding | string | null;
export type TGulpFunctionResult = PromiseLike<unknown> | unknown;
export interface IPromiseFunction { export interface IPromiseFunction<TFile = unknown> {
(file?, enc?): PromiseLike<any>; (file?: TFile | null, enc?: TGulpFunctionEncoding): TGulpFunctionResult;
} }
let defaultExport = ( type TTransformCallback = (errorArg?: Error | null, dataArg?: unknown) => void;
functionsToExecuteArg: IPromiseFunction | IPromiseFunction[], type TFlushCallback = (errorArg?: Error | null) => void;
const normalizeError = (errorArg: unknown): Error => {
return errorArg instanceof Error ? errorArg : new Error(String(errorArg));
};
const defaultExport = <TFile = unknown>(
functionsToExecuteArg: IPromiseFunction<TFile> | Array<IPromiseFunction<TFile>>,
executionModeArg: TExecutionMode = 'forEach' executionModeArg: TExecutionMode = 'forEach'
): Transform => { ): Transform => {
let promiseArray = []; const runFunction = async (
let runFunction = function(functionArg, file, enc) { functionArg: IPromiseFunction<TFile>,
let returnValue = functionArg(file, enc); fileArg: TFile | null,
if (typeof returnValue !== 'undefined' && typeof returnValue.then !== 'undefined') { encArg: TGulpFunctionEncoding
promiseArray.push(returnValue); ): Promise<void> => {
} await functionArg(fileArg, encArg);
}; };
let checkAndRunFunction = function(file, enc) { const checkAndRunFunction = async (
fileArg: TFile | null,
encArg: TGulpFunctionEncoding
): Promise<void> => {
if (typeof functionsToExecuteArg === 'function') { if (typeof functionsToExecuteArg === 'function') {
runFunction(functionsToExecuteArg, file, enc); await runFunction(functionsToExecuteArg, fileArg, encArg);
} else if (Array.isArray(functionsToExecuteArg)) { } else if (Array.isArray(functionsToExecuteArg)) {
for (let anyFunction in functionsToExecuteArg) { await Promise.all(
runFunction(functionsToExecuteArg[anyFunction], file, enc); functionsToExecuteArg.map(async (functionArg) => runFunction(functionArg, fileArg, encArg))
} );
} else { } else {
throw new Error('gulp-callfunction: something is strange with the given arguments'); throw new Error('gulp-callfunction: something is strange with the given arguments');
} }
return Promise.all(promiseArray);
}; };
let hasExecutedOnce = false; let hasExecutedOnce = false;
let forEach = function(file, enc, cb) { const transformFunction = (fileArg: TFile, encArg: BufferEncoding, cbArg: TTransformCallback) => {
// the forEach function is called for every chunk
switch (executionModeArg) { switch (executionModeArg) {
case 'forEach': case 'forEach':
checkAndRunFunction(file, enc).then(function() { checkAndRunFunction(fileArg, encArg).then(
cb(null, file); () => cbArg(null, fileArg),
}); (errorArg) => cbArg(normalizeError(errorArg))
);
break; break;
case 'forFirst': case 'forFirst':
if (hasExecutedOnce) { if (!hasExecutedOnce) {
checkAndRunFunction(file, enc).then(function() { hasExecutedOnce = true;
cb(null, file); checkAndRunFunction(fileArg, encArg).then(
}); () => cbArg(null, fileArg),
(errorArg) => cbArg(normalizeError(errorArg))
);
} else { } else {
cb(null, file); cbArg(null, fileArg);
} }
hasExecutedOnce = true;
break; break;
case 'atEnd': case 'atEnd':
cb(); cbArg(null, fileArg);
break; break;
default: default:
cbArg(null, fileArg);
break; break;
} }
}; };
let atEnd = function(cb) { const flushFunction = (cbArg: TFlushCallback) => {
if (executionModeArg === 'atEnd') { if (executionModeArg === 'atEnd') {
checkAndRunFunction(null, null).then(function() { checkAndRunFunction(null, null).then(
cb(); () => cbArg(),
}); (errorArg) => cbArg(normalizeError(errorArg))
);
} else { } else {
cb(); cbArg();
} }
}; };
return through2.obj(forEach, atEnd);
return through2.obj(transformFunction, flushFunction) as Transform;
}; };
export let forEach = (funcArg: IPromiseFunction) => { export const forEach = <TFile = unknown>(funcArg: IPromiseFunction<TFile>): Transform => {
return defaultExport(funcArg, 'forEach'); return defaultExport(funcArg, 'forEach');
}; };
export let forFirst = (funcArg: IPromiseFunction) => { export const forFirst = <TFile = unknown>(funcArg: IPromiseFunction<TFile>): Transform => {
return defaultExport(funcArg, 'forFirst'); return defaultExport(funcArg, 'forFirst');
}; };
export let atEnd = (funcArg: IPromiseFunction) => { export const atEnd = <TFile = unknown>(funcArg: IPromiseFunction<TFile>): Transform => {
return defaultExport(funcArg, 'atEnd'); return defaultExport(funcArg, 'atEnd');
}; };
+16
View File
@@ -0,0 +1,16 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noImplicitAny": true,
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"types": ["node"]
},
"exclude": [
"dist_*/**/*.d.ts"
]
}
-17
View File
@@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}