diff --git a/Gulpfile.js b/Gulpfile.js index 275ef7a0..4519ad0d 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -39,7 +39,11 @@ gulp.task('scripts', function(){ var bundler = browserify('./app/application.js') bundle(bundler, './application.js') .pipe(gulp.dest('./build/assets/js/')) - .pipe(refresh(lrserver)); + + var polyfillBundler = browserify('./app/polyfill.js') + bundle(polyfillBundler, './polyfill.js') + .pipe(gulp.dest('./build/assets/js/')) + .pipe(refresh(lrserver)) }); gulp.task('html', function(){ diff --git a/app/index.html b/app/index.html index 676defa5..ad08625b 100644 --- a/app/index.html +++ b/app/index.html @@ -14,10 +14,7 @@
- +