hardlounge/Gruntfile.js

20 lines
338 B
JavaScript
Raw Normal View History

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