grunt-parallelize
grunt-parallelize copied to clipboard
Always work only with src
Hi,
I love this tool and trying to use with grunt-css-lint but the problem I've is grunt-css-lint uses 'allFiles' to provide all the files to be linted but paralleize expect input to be in src...
Can you also support any input name other than src?
Thanks, Bruk
Same here for grunt-eslint.
eslint: {
target: [
'**/*.js',
'components/**/*.html'
],
options: {
quiet: true
}
},
parallelize: {
options: {
processes: 2
},
eslint: true
}
grunt.registerTask('lint', 'Runs eslint', ['clean', 'eslint']);
Doesn't work.
I've also tried specifying eslint: {target: true}, but no luck.