File tree Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -101,10 +101,10 @@ function _buildAppTree(defaults) {
101
101
vendorNpmFiles : [
102
102
'systemjs/dist/system-polyfills.js' ,
103
103
'systemjs/dist/system.src.js' ,
104
- 'zone.js/dist/*.js ' ,
104
+ 'zone.js/dist/*.+(js|js.map) ' ,
105
105
'core-js/client/core.js' ,
106
- 'rxjs/**/*.js ' ,
107
- '@angular/**/*.js ' ,
106
+ 'rxjs/**/*.+(js|js.map) ' ,
107
+ '@angular/**/*.+(js|js.map) ' ,
108
108
'hammerjs/*.min.+(js|js.map)'
109
109
]
110
110
} ) ;
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ const components = [
23
23
'toolbar'
24
24
] ;
25
25
26
-
27
26
/** Map relative paths to URLs. */
28
27
const map : any = {
29
28
'@angular2-material/core' : 'core' ,
@@ -45,6 +44,7 @@ components.forEach(name => {
45
44
} ;
46
45
} ) ;
47
46
47
+
48
48
////////////////////////////////////////////////////////////////////////////////////////////////
49
49
/***********************************************************************************************
50
50
* Everything underneath this line is managed by the CLI.
@@ -63,8 +63,13 @@ const barrels: string[] = [
63
63
'rxjs' ,
64
64
65
65
// App specific barrels.
66
- 'app' ,
67
- 'app/shared' ,
66
+ 'demo-app' ,
67
+ 'button-toggle' ,
68
+ 'gestures' ,
69
+ 'live-announcer' ,
70
+ 'portal' ,
71
+ 'overlay' ,
72
+ ...components
68
73
/** @cli -barrel */
69
74
] ;
70
75
Original file line number Diff line number Diff line change 3
3
"declaration" : true ,
4
4
"emitDecoratorMetadata" : true ,
5
5
"experimentalDecorators" : true ,
6
- "mapRoot" : " " ,
6
+ "mapRoot" : " / " ,
7
7
"module" : " commonjs" ,
8
8
"moduleResolution" : " node" ,
9
9
"noEmitOnError" : true ,
Original file line number Diff line number Diff line change @@ -62,8 +62,7 @@ const barrels: string[] = [
62
62
'rxjs' ,
63
63
64
64
// App specific barrels.
65
- 'app' ,
66
- 'app/shared' ,
65
+ 'e2e-app' ,
67
66
/** @cli -barrel */
68
67
] ;
69
68
You can’t perform that action at this time.
0 commit comments