File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -1019,13 +1019,14 @@ gulp.task('!build.js.cjs', function() {
10191019
10201020
10211021var bundleConfig = {
1022- paths : {
1023- "*" : "dist/js/prod/es5/*.js"
1024- } ,
1022+ paths : { "*" : "dist/js/prod/es5/*.js" } ,
1023+ // Files that end up empty after transpilation confuse system-builder
1024+ // and need to be explitily listed here.
1025+ // TODO: upgrade system builder and find a way to declare all input as cjs.
10251026 meta : {
1026- 'angular2/src/router/route_definition' : {
1027- format : 'cjs'
1028- }
1027+ 'angular2/src/router/route_definition' : { format : 'cjs' } ,
1028+ 'angular2/src/core/directives/observable_list_diff' : { format : 'cjs' } ,
1029+ 'angular2/lifecycle_hooks' : { format : 'cjs' }
10291030 }
10301031} ;
10311032
You can’t perform that action at this time.
0 commit comments