meshviewer/tasks/clean.js
2017-01-10 23:38:57 +01:00

13 lines
301 B
JavaScript

module.exports = function (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");
};