verdaccio/Gruntfile.js

38 lines
971 B
JavaScript
Raw Normal View History

2014-05-07 18:27:51 +02:00
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
browserify: {
dist: {
files: {
2014-05-07 18:29:04 +02:00
'lib/static/main.js': ['lib/GUI/js/main.js']
2014-05-07 18:27:51 +02:00
},
options: {
debug: true
}
}
},
less: {
dist: {
files: {
2014-05-07 18:29:04 +02:00
'lib/static/main.css': ['lib/GUI/css/main.less']
2014-05-07 18:27:51 +02:00
},
options: {
sourceMap: true
}
}
},
watch: {
files: [ "lib/GUI/js/**/*", "lib/GUI/css/**/*"],
tasks: [ 'default' ]
}
});
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.registerTask('default', [
'browserify',
'less'
]);
};