mirror of
https://github.com/thelounge/thelounge
synced 2024-11-15 08:47:16 +00:00
19 lines
338 B
JavaScript
19 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"]
|
|
);
|
|
};
|