grunt-parallelize icon indicating copy to clipboard operation
grunt-parallelize copied to clipboard

Always work only with src

Open bruk1977 opened this issue 9 years ago • 1 comments

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

bruk1977 avatar Sep 30 '16 17:09 bruk1977

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.

iancamp avatar Apr 12 '17 22:04 iancamp