
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Gulp extension to run tasks from multiple gulpfiles.
Basic Usage:
Install gulp-hub:
$ npm install gulp-hub
Create a gulpfile.js which looks like this:
var gulp = require('gulp');
var HubRegistry = require('gulp-hub');
/* load some gulpfiles into the registry */
var hub = new HubRegistry(['./project1/gulpfile.js', './project1/gulpfile.js']);
/* tell gulp to use the tasks just loaded */
gulp.registry(hub);
Run gulp [taskname]
Gulp will execute [taskname] in all of the gulpfiles.
More Details:
HubRegistry constructor accepts glob patterns. Tasks registered in the same gulpfile from which gulp-hub is called will be included. If one of the child gulpfiles also uses HubRegistry then that is handled too.
Use gulp --tasks to view the task tree:
gulp --tasks
gulp-hub/examples$ gulp --tasks
[15:56:21] Loading /Users/frank/work/gulp-hub/examples/project1/gulpfile.js
[15:56:21] Loading /Users/frank/work/gulp-hub/examples/project1/project1A/gulpfile.js
[15:56:21] Loading /Users/frank/work/gulp-hub/examples/project1/project1B/gulpfile.js
[15:56:21] Loading /Users/frank/work/gulp-hub/examples/project2/gulpfile.js
[15:56:21] Tasks for ~/work/gulp-hub/examples/gulpfile.js
[15:56:21] ├─┬ build
[15:56:21] │ └─┬ <series>
[15:56:21] │ ├─┬ /Users/frank/work/gulp-hub/examples/project1/gulpfile.js-build
[15:56:21] │ │ └─┬ build
[15:56:21] │ │ └─┬ <series>
[15:56:21] │ │ ├─┬ /Users/frank/work/gulp-hub/examples/project1/project1A/gulpfile.js-build
[15:56:21] │ │ │ └─┬ build
[15:56:21] │ │ │ └─┬ <series>
[15:56:21] │ │ │ ├── precompile
[15:56:21] │ │ │ └── compile1A
[15:56:21] │ │ ├─┬ /Users/frank/work/gulp-hub/examples/project1/project1B/gulpfile.js-build
[15:56:21] │ │ │ └─┬ build
[15:56:21] │ │ │ └─┬ <series>
[15:56:21] │ │ │ ├── precompile
[15:56:21] │ │ │ └── compile
[15:56:21] │ │ └─┬ /Users/frank/work/gulp-hub/examples/project1/gulpfile.js-internal-build
[15:56:21] │ │ └─┬ build
[15:56:21] │ │ └─┬ <series>
[15:56:21] │ │ ├── precompile
[15:56:21] │ │ └── compile
[15:56:21] │ ├─┬ /Users/frank/work/gulp-hub/examples/project2/gulpfile.js-build
[15:56:21] │ │ └─┬ build
[15:56:21] │ │ └─┬ <series>
[15:56:21] │ │ ├── precompile
[15:56:21] │ │ └── compile
[15:56:21] │ └─┬ /Users/frank/work/gulp-hub/examples/gulpfile.js-internal-build
[15:56:21] │ └─┬ build
[15:56:21] │ └─┬ <series>
[15:56:21] │ ├── precompile
[15:56:21] │ └── compile
See the example project for more advanced examples.
FAQs
A gulp plugin to run tasks from multiple gulpfiles
We found that gulp-hub demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.