From dbc5737d82fa52998bb8aa6122e09ba46adbb321 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Mon, 29 Feb 2016 15:35:49 -0600 Subject: [PATCH] chore(): update copy.libs task to work with npm 2 and 3 --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 903a3722e2..96bba5bcc7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -332,7 +332,8 @@ gulp.task('copy.libs', function() { var merge = require('merge2'); var extModules = gulp.src([ 'node_modules/es6-shim/es6-shim.min.js', - 'node_modules/systemjs/node_modules/es6-module-loader/dist/es6-module-loader.src.js', + 'node_modules/systemjs/node_modules/es6-module-loader/dist/es6-module-loader.src.js', //npm2 + 'node_modules/es6-module-loader/dist/es6-module-loader.src.js', //npm3 'node_modules/systemjs/dist/system.src.js', 'node_modules/angular2/bundles/angular2-polyfills.js', 'node_modules/angular2/bundles/angular2.dev.js',