Gathering detailed insights and metrics for grunt-concurrentdep
Gathering detailed insights and metrics for grunt-concurrentdep
Gathering detailed insights and metrics for grunt-concurrentdep
Gathering detailed insights and metrics for grunt-concurrentdep
npm install grunt-concurrentdep
Typescript
Module System
Min. Node Version
Node Version
NPM Version
68.4
Supply Chain
95
Quality
75.8
Maintenance
100
Vulnerability
81.3
License
JavaScript (92.92%)
Smarty (7.08%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
GPL-2.0 License
2 Stars
25 Commits
2 Watchers
1 Branches
1 Contributors
Updated on Sep 23, 2016
Latest Version
0.1.25
Package Id
grunt-concurrentdep@0.1.25
Size
2.29 kB
NPM Version
2.9.1
Node Version
0.10.30
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
Run grunt tasks concurrently by depends
Running slow tasks like Coffee and Sass concurrently can potentially improve your build time significantly. This task is also useful if you need to run multiple blocking tasks like nodemon
and watch
at once.
1$ npm install --save-dev grunt-concurrentdep
1require('jit-grunt')(grunt); // npm install --save-dev jit-grunt 2 3grunt.initConfig({ 4 concurrentdep: { 5 app: { 6 concat: ['csslint','jshint'], 7 cssmin: ['concat'], 8 csslint: ['preprocess'], 9 jshint: ['preprocess'], 10 uglify: ['concat'], 11 phplint: [] 12 } 13 } 14}); 15 16grunt.registerTask( "default",['concurrentdep']);
┌ csslint ┐ ┌ uglify ┐
run: ┌ preprocess ┤ ├ concat ┤ ├┐
start ┤ └ jshint ─┘ └ cssmin ┘├ done
└ phplint ────────────────────────────────┘
Type: number
Default: 4
Limit how many tasks that are run concurrently.
Type: boolean
Default: true
You can optionally show taskduration
Type: boolean
Default: false
You can optionally log the output of your concurrent tasks by specifying the logConcurrentOutput
option. Here is an example config which runs grunt-nodemon to launch and monitor a node server and grunt-contrib-watch to watch for asset changes all in one terminal tab:
1grunt.initConfig({
2 concurrentdep: {
3 options: {
4 logConcurrentOutput: true
5 },
6 app: {
7 ...
8 }
9 }
10});
11
12grunt.loadNpmTasks('grunt-concurrentdep');
13grunt.registerTask('default', ['concurrentdep:app']);
The output will be messy when combining certain tasks. This option is best used with tasks that don't exit like watch
and nodemon
to monitor the output of long-running concurrent tasks.
Based on grunt-concurrent
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/25 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
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
Score
Last Scanned on 2025-07-14
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