You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that's a no. I had better results registering my own task instead of using this task anyway. It's super simple. Just npm install --save-dev jscpd.
Example code:
var jscpd = require('jscpd');
grunt.registerTask('jscpd', function() {
jscpd.prototype.run({
path: './',
files: 'app/**/*.js',
exclude: [
// examples, enter your own stuff
// dirs
'**/node_modules/**',
'**/compiled/**',
'**/vendor/**',
// files
'**/*_compiled.js'
],
output: 'tests/_duplicates-report.xml'
});
});
Are you active?
The text was updated successfully, but these errors were encountered: