grunt-reznik
Exposes reznik as a grunt task.
Description
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-reznik
Add the following line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-reznik');
Configuration for this grunt task is equal to reznik's command line usage. Example:
grunt.initConfig({
reznik: {
all: {
basePath: 'path/to/src',
analysis: 'all',
exclude: 'some/module/loader.js'
}
}
});
Execute the task:
grunt reznik:all