thelounge/Gruntfile.js
2014-07-08 01:15:10 +02:00

20 lines
338 B
JavaScript

module.exports = function(grunt) {
grunt.initConfig({
uglify: {
js: {
files: {
"client/js/components.min.js": [
"client/components/*.js",
"client/components/**/*.js"
]
}
}
}
});
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.registerTask(
"default",
["uglify"]
);
};