We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8dfe0c commit 6def29fCopy full SHA for 6def29f
lib/broccoli/angular2-app.js
@@ -61,7 +61,17 @@ Angular2App.prototype.toTree = function() {
61
});
62
63
var thirdPartyJs = new Concat(thirdPartyJsTree, {
64
- inputFiles: ['**/*.js'],
+ 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
+ ],
75
outputFile: '/thirdparty/libs.js',
76
allowNone: true
77
0 commit comments