2017-01-29 23:51:08 +00:00
|
|
|
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: {
|
2017-01-29 23:51:08 +00:00
|
|
|
build: ['build/**/*', 'node_modules/grunt-newer/.cache'],
|
|
|
|
release: ['build/vendor', 'build/*.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
|
|
|
|
2017-01-29 23:51:08 +00:00
|
|
|
grunt.loadNpmTasks('grunt-contrib-clean');
|
2016-05-22 11:23:43 +00:00
|
|
|
};
|