thelounge/Gruntfile.js
Mattias Erming 3e153b9ebc Remove bower
2014-06-17 18:20:22 +02:00

21 lines
388 B
JavaScript

module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
uglify: {
js: {
files: {
"client/js/components.min.js": ["client/components/*.js"]
}
}
}
});
// Load and run uglify.
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.registerTask(
"default",
["uglify"]
);
};