verdaccio/Gruntfile.js

40 lines
805 B
JavaScript
Raw Normal View History

2014-05-07 18:27:51 +02:00
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readYAML('package.yaml'),
browserify: {
dist: {
files: {
'lib/static/main.js': [ 'lib/GUI/js/main.js' ]
2014-05-07 18:27:51 +02:00
},
options: {
debug: true,
transform: [ 'browserify-handlebars' ]
}
}
},
less: {
dist: {
files: {
'lib/static/main.css': [ 'lib/GUI/css/main.less' ]
2014-05-07 18:27:51 +02:00
},
options: {
2014-12-10 07:30:02 +01:00
sourceMap: false
2014-05-07 18:27:51 +02:00
}
}
},
watch: {
files: [ 'lib/GUI/**/*' ],
tasks: [ 'default' ]
}
})
2014-05-07 18:27:51 +02:00
grunt.loadNpmTasks('grunt-browserify')
grunt.loadNpmTasks('grunt-contrib-watch')
grunt.loadNpmTasks('grunt-contrib-less')
2014-05-07 18:27:51 +02:00
grunt.registerTask('default', [
'browserify',
'less'
])
}