Gathering detailed insights and metrics for gulp-run-sequence
Gathering detailed insights and metrics for gulp-run-sequence
Gathering detailed insights and metrics for gulp-run-sequence
Gathering detailed insights and metrics for gulp-run-sequence
npm install gulp-run-sequence
Typescript
Module System
Min. Node Version
NPM Version
69.7
Supply Chain
81.5
Quality
75.2
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
726,389
Last Day
1
Last Week
1
Last Month
2,821
Last Year
47,015
959 Stars
91 Commits
56 Forks
15 Watching
1 Branches
13 Contributors
Minified
Minified + Gzipped
Latest Version
0.3.2
Package Id
gulp-run-sequence@0.3.2
Size
2.80 kB
NPM Version
1.3.24
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
-99.8%
1
Compared to previous week
Last month
-34%
2,821
Compared to previous month
Last year
-2.6%
47,015
Compared to previous year
Runs a sequence of gulp tasks in the specified order. This function is designed to solve the situation where you have defined run-order, but choose not to or cannot use dependencies.
You can still run some of the tasks in parallel, by providing an array of task names.
If the final argument is a function, it will be used as a callback after all the functions are either finished or an error has occurred.
1var gulp = require('gulp'); 2var runSequence = require('gulp-run-sequence'); 3var clean = require('gulp-clean'); 4 5gulp.task('build', function(cb) { 6 runSequence('build-clean', ['build-scripts', 'build-styles'], 'build-html', cb); 7}); 8 9// configure build-clean, build-scripts, build-styles, build-html as you 10// wish, but make sure they either return a stream or handle the callback 11// Example: 12 13gulp.task('build-clean', function() { 14 return gulp.src('build').pipe(clean()); 15}); 16
(MIT License)
Copyright (c) 2014 Phil DeJarnett
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 8/27 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
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
Reason
30 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-02-03
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