Skip to content

Commit 6def29f

Browse files
committed
fix(vendors): concat the files properly
1 parent b8dfe0c commit 6def29f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

lib/broccoli/angular2-app.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,17 @@ Angular2App.prototype.toTree = function() {
6161
});
6262

6363
var thirdPartyJs = new Concat(thirdPartyJsTree, {
64-
inputFiles: ['**/*.js'],
64+
inputFiles: [ //TODO: figure out how to make it a glob that maintains the order of the files
65+
'**/angular2-polyfills.js',
66+
'**/system.src.js',
67+
'**/system-polyfills.js',
68+
'**/es6-shim.js',
69+
'**/angular2.dev.js',
70+
'**/http.dev.js',
71+
'**/router.dev.js',
72+
'**/upgrade.dev.js',
73+
'**/Rx.js'
74+
],
6575
outputFile: '/thirdparty/libs.js',
6676
allowNone: true
6777
});

0 commit comments

Comments
 (0)