From ceecf45da9fc2af26e83f6e5392d70b4cb762ce5 Mon Sep 17 00:00:00 2001 From: Kimmo Brunfeldt Date: Tue, 9 Dec 2014 11:08:22 +0200 Subject: [PATCH] Fix broken browserify command --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 1bdf55b..de3e156 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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: {