fix(gulp-function): correct forFirst execution behavior, improve async error handling, and modernize package metadata
This commit is contained in:
+25
-21
@@ -1,15 +1,33 @@
|
||||
{
|
||||
"name": "@push.rocks/gulp-function",
|
||||
"private": false,
|
||||
"version": "3.0.7",
|
||||
"private": false,
|
||||
"description": "A Gulp plugin to execute functions within a Gulp task pipeline.",
|
||||
"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": {
|
||||
"test": "(tstest test/)",
|
||||
"build": "(tsbuild --allowimplicitany)",
|
||||
"test": "tstest test/",
|
||||
"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": {
|
||||
"type": "git",
|
||||
"url": "https://code.foss.global/push.rocks/gulp-function.git"
|
||||
@@ -25,25 +43,10 @@
|
||||
"JavaScript",
|
||||
"TypeScript"
|
||||
],
|
||||
"author": "Lossless GmbH <office@lossless.com> (https://lossless.com)",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://gitlab.com/push.rocks/gulp-function/issues"
|
||||
"url": "https://code.foss.global/push.rocks/gulp-function/issues"
|
||||
},
|
||||
"homepage": "https://code.foss.global/push.rocks/gulp-function",
|
||||
"dependencies": {
|
||||
"@push.rocks/smartpromise": "^4.0.3",
|
||||
"@types/through2": "^2.0.32",
|
||||
"through2": "^3.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@git.zone/tsbuild": "^2.1.17",
|
||||
"@git.zone/tsrun": "^1.2.46",
|
||||
"@git.zone/tstest": "^1.0.28",
|
||||
"@push.rocks/smartgulp": "^3.0.3",
|
||||
"@push.rocks/tapbundle": "^5.0.15",
|
||||
"gulp": "^4.0.2"
|
||||
},
|
||||
"files": [
|
||||
"ts/**/*",
|
||||
"ts_web/**/*",
|
||||
@@ -53,11 +56,12 @@
|
||||
"dist_ts_web/**/*",
|
||||
"assets/**/*",
|
||||
"cli.js",
|
||||
".smartconfig.json",
|
||||
"license",
|
||||
"npmextra.json",
|
||||
"readme.md"
|
||||
],
|
||||
"type": "module",
|
||||
"browserslist": [
|
||||
"last 1 chrome versions"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user