From f02b2c3c8a94c7d9dd5d69bc89d9112f573b04b4 Mon Sep 17 00:00:00 2001 From: jbavari Date: Tue, 20 Oct 2015 10:25:35 -0600 Subject: [PATCH] chore(es6-shim): Updating the gulpfile to bundle in es6-shim. Updating the webpack.config file to include the es6-shim --- gulpfile.js | 1 + scripts/demos/webpack.config.js | 1 + 2 files changed, 2 insertions(+) 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",