meshviewer/tasks/clean.js
Xaver Maierhofer 5600832305
[TASK] Move to es5 eslint airbnb
Step forward to es6 airbnb
2017-01-30 00:51:12 +01:00

13 lines
308 B
JavaScript

module.exports = function exports(grunt) {
'use strict';
grunt.config.merge({
clean: {
build: ['build/**/*', 'node_modules/grunt-newer/.cache'],
release: ['build/vendor', 'build/*.map', 'build/config.json', 'build/style.css']
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
};