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: {
|
2016-06-02 22:49:45 +00:00
|
|
|
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
|
|
|
}
|
2016-05-22 11:23:43 +00:00
|
|
|
});
|
2015-03-29 12:43:02 +00:00
|
|
|
|
2016-05-22 11:23:43 +00:00
|
|
|
grunt.loadNpmTasks("grunt-contrib-clean");
|
|
|
|
};
|