meshviewer/tasks/clean.js

13 lines
307 B
JavaScript
Raw Normal View History

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