Skip to content

Instantly share code, notes, and snippets.

@gregstewart
Created August 21, 2014 10:10
Show Gist options
  • Save gregstewart/56932dddf79b575bd253 to your computer and use it in GitHub Desktop.
Save gregstewart/56932dddf79b575bd253 to your computer and use it in GitHub Desktop.
configuration for grunt-plato task
(function (module) {
'use strict';
var config = {
plato: {
options : {
exclude: /assets\/.+/
},
files: {
'reports/plato': ['src/**/*.js', 'test/**/*.js']
}
}
};
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-plato');
grunt.config('plato', config);
};
})(module);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment