Shuo/Gruntfile.js

20 lines
338 B
JavaScript
Raw Normal View History

2014-06-17 13:38:08 +00:00
module.exports = function(grunt) {
grunt.initConfig({
uglify: {
js: {
files: {
2014-06-30 01:20:54 +00:00
"client/js/components.min.js": [
"client/components/*.js",
2014-07-07 23:13:12 +00:00
"client/components/**/*.js"
2014-06-30 01:20:54 +00:00
]
2014-06-17 13:38:08 +00:00
}
}
}
});
2014-07-07 23:13:12 +00:00
grunt.loadNpmTasks("grunt-contrib-uglify");
2014-06-17 13:38:08 +00:00
grunt.registerTask(
"default",
2014-06-26 23:05:47 +00:00
["uglify"]
2014-06-17 13:38:08 +00:00
);
};