Browse Source

add -target=dev option to grunt to prevent minifying the source

patch-2
Matias Alejo Garcia 11 years ago
parent
commit
8ec4f2f9c5
  1. 3
      Gruntfile.js

3
Gruntfile.js

@ -16,7 +16,8 @@ module.exports = function(grunt) {
stdout: true,
stderr: true
},
command: 'node ./browser/build.js -a',
command: grunt.option('target') === 'dev' ?
'node ./browser/build.js -a -d ' : 'node ./browser/build.js -a'
}
},
watch: {

Loading…
Cancel
Save