meshviewer/tasks/clean.js

13 lines
307 B
JavaScript
Raw Normal View History

module.exports = function exports(grunt) {
'use strict';
2016-05-27 21:59:01 +00:00
2015-03-29 12:43:02 +00:00
grunt.config.merge({
clean: {
build: ['build/**/*', 'node_modules/grunt-newer/.cache'],
2017-01-31 03:45:27 +00:00
release: ['build/vendor', 'build/*.map', 'build/config.json', 'build/main.css']
2015-03-29 12:43:02 +00:00
}
});
2015-03-29 12:43:02 +00:00
grunt.loadNpmTasks('grunt-contrib-clean');
};