Gathering detailed insights and metrics for undertaker-forward-reference
Gathering detailed insights and metrics for undertaker-forward-reference
Gathering detailed insights and metrics for undertaker-forward-reference
Gathering detailed insights and metrics for undertaker-forward-reference
npm install undertaker-forward-reference
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
20 Stars
16 Commits
6 Forks
5 Watching
1 Branches
5 Contributors
Updated on 28 Sept 2024
Minified
Minified + Gzipped
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-0.7%
2,792
Compared to previous day
Last week
25.7%
17,558
Compared to previous week
Last month
-1.2%
65,032
Compared to previous month
Last year
30.6%
707,180
Compared to previous year
1
6
Undertaker custom registry supporting forward referenced tasks.
The focus of gulp 4.0 is to make the 90% use case extremely easy, but we don't want to completely unsupport the 10% use cases. We have noticed patterns people use and things they want to do (and have worked around), like serial execution. However, I believe forward referenced tasks (as defined in https://github.com/gulpjs/gulp/issues/802) are an edge case that is better handled with other patterns (coming soon: links to better patterns). If you must use forward referenced tasks, you can set this as a custom registry before registering any tasks.
1var gulp = require('gulp'); 2var FwdRef = require('undertaker-forward-reference'); 3 4gulp.registry(FwdRef()); // or gulp.registry(new FwdRef()); 5 6gulp.task('default', gulp.series('forward-ref')); 7 8gulp.task('forward-ref', function (cb) { 9 // do task things 10 cb(); 11});
ForwardReferenceRegistry()
Constructor for the registry. Pass an instance of this registry to gulp.registry
.
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 1/15 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More