-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathangular-cli-build.js
33 lines (29 loc) · 1.08 KB
/
angular-cli-build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Angular-CLI build configuration
// This file lists all the node_modules files that will be used in a build
// Also see https://github.com/angular/angular-cli/wiki/3rd-party-libs
/* global require, module */
var Angular2App = require('angular-cli/lib/broccoli/angular2-app');
module.exports = function(defaults) {
return new Angular2App(defaults, {
vendorNpmFiles: [
'systemjs/dist/system-polyfills.js',
'systemjs/dist/system.src.js',
'zone.js/dist/**/*.+(js|js.map)',
'es6-shim/es6-shim.js',
'reflect-metadata/**/*.+(ts|js|js.map)',
'rxjs/**/*.+(js|js.map)',
'@angular/**/*.+(js|js.map)',
'moment/min/moment.min.js',
'ng2-bootstrap/**/*.+(js)',
'ng2-charts/**/*.+(js|js.map)',
'chart.js/dist/Chart.min.js',
'angular2-fontawesome/*.+(js|js.map)',
'angular2-fontawesome/**/*.+(js|js.map)',
'angular2-fontawesome/**/**/*.+(js|js.map)',
'font-awesome/css/*.*',
'font-awesome/fonts/*.*',
'angular2-jwt/**/*.+(js|js.map)',
'angular2-localStorage/**/*.+(ts|js|js.map)'
]
});
};