mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
40 lines
1003 B
JavaScript
40 lines
1003 B
JavaScript
module.exports = function(grunt) {
|
|
grunt.initConfig({
|
|
pkg: grunt.file.readYAML('package.yaml'),
|
|
browserify: {
|
|
dist: {
|
|
files: {
|
|
'lib/static/main.js': ['lib/GUI/js/main.js']
|
|
},
|
|
options: {
|
|
debug: true,
|
|
transform: ['browserify-handlebars']
|
|
}
|
|
}
|
|
},
|
|
less: {
|
|
dist: {
|
|
files: {
|
|
'lib/static/main.css': ['lib/GUI/css/main.less']
|
|
},
|
|
options: {
|
|
sourceMap: true
|
|
}
|
|
}
|
|
},
|
|
watch: {
|
|
files: [ "lib/GUI/**/*"],
|
|
tasks: [ 'default' ]
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-browserify');
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
grunt.loadNpmTasks('grunt-contrib-less');
|
|
|
|
grunt.registerTask('default', [
|
|
'browserify',
|
|
'less'
|
|
]);
|
|
};
|