Skip to content

Commit

Permalink
Fix broken browserify command
Browse files Browse the repository at this point in the history
  • Loading branch information
kimmobrunfeldt committed Dec 9, 2014
1 parent 658d573 commit ceecf45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ module.exports = function(grunt) {
options: {
stdout: true
},
command: 'browserify src/progressbar.js -o dist/progressbar.js --standalone ProgressBar'
command: 'browserify src/main.js -o dist/progressbar.js --standalone ProgressBar'
},
browserifyMinified: {
options: {
stdout: true
},
// The output file is minified by uglifyjs later.
command: 'browserify src/progressbar.js -o dist/progressbar.min.js --standalone ProgressBar'
command: 'browserify src/main.js -o dist/progressbar.min.js --standalone ProgressBar'
},
watchifyLocalDev: {
options: {
Expand Down

0 comments on commit ceecf45

Please sign in to comment.