diff -r e944c017b8c8 -r 9611905b58fe client/annotviz/gulp/tasks/browserify.js --- a/client/annotviz/gulp/tasks/browserify.js Tue Jan 13 14:03:31 2015 +0100 +++ b/client/annotviz/gulp/tasks/browserify.js Tue Jan 13 15:27:20 2015 +0100 @@ -16,13 +16,13 @@ .require('./app/lib/pixi/bin/pixi.js', { expose: 'pixi' }) .require('./app/lib/randomColor/randomColor.js', {expose: 'randomColor'}) .bundle() - .pipe(source('libs-pianoroll.js')) + .pipe(source('libs-'+p.name+'.js')) .pipe(gulp.dest(config.dist + '/js/')); }); // Browserify gulp.task('browserify', function() { - return browserify({debug: true, standalone: 'pianoroll'}) + return browserify({debug: true, standalone: 'annotviz'}) .add('./app/js/main.js') .external('pixi') .external('randomColor')