Files
phaser/node_modules/grunt/custom-gruntfile.js
T
2013-04-25 20:05:56 +01:00

22 lines
387 B
JavaScript

module.exports = function(grunt) {
grunt.log.writeln('foo', 'bar', 'baz');
grunt.initConfig({
clean: {
all: [
'deep/**',
],
exclude: [
'deep/**',
'!deep/deep.txt'
],
}
});
grunt.registerMultiTask('clean', function() {
this.filesSrc.forEach(function(filepath) {
console.log('delete', filepath);
});
});
};