diff --git a/gulpfile.js b/gulpfile.js index 4f1444a3b8..6d28f016e7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -231,6 +231,7 @@ gulp.task('bundle.ionic', ['transpile'], function() { } return gulp.src([ + 'node_modules/es6-shim/es6-shim.min.js', 'dist/src/es5/system/ionic/**/*.js' ]) .pipe(concat('ionic.js')) diff --git a/scripts/demos/webpack.config.js b/scripts/demos/webpack.config.js index 06c0251c4c..d4dbe1cc7c 100644 --- a/scripts/demos/webpack.config.js +++ b/scripts/demos/webpack.config.js @@ -1,5 +1,6 @@ module.exports = { entry: [ + "es6-shim", "zone.js", "reflect-metadata", "angular2/angular2",