@@ -214,21 +214,26 @@ Forks of this project demonstrate how to extend and integrate with other librari
214
214
│ │ │ ├── about.component.html
215
215
│ │ │ ├── about.component.spec.ts
216
216
│ │ │ ├── about.component.ts
217
+ │ │ │ ├── about.routes.ts
217
218
│ │ │ └── index.ts
218
219
│ │ ├── +home
219
220
│ │ │ ├── home.component.css
220
221
│ │ │ ├── home.component.e2e-spec.ts
221
222
│ │ │ ├── home.component.html
222
223
│ │ │ ├── home.component.spec.ts
223
224
│ │ │ ├── home.component.ts
225
+ │ │ │ ├── home.routes.ts
224
226
│ │ │ └── index.ts
225
227
│ │ ├── app.component.e2e-spec.ts
226
228
│ │ ├── app.component.html
227
229
│ │ ├── app.component.spec.ts
228
230
│ │ ├── app.component.ts
231
+ │ │ ├── app.routes.ts
229
232
│ │ ├── hot_loader_main.ts
230
233
│ │ ├── main.ts
231
234
│ │ └── shared
235
+ │ │ ├── config
236
+ │ │ │ └── env.config.ts
232
237
│ │ ├── index.ts
233
238
│ │ ├── name-list
234
239
│ │ │ ├── index.ts
@@ -245,11 +250,16 @@ Forks of this project demonstrate how to extend and integrate with other librari
245
250
│ │ ├── toolbar.component.html
246
251
│ │ └── toolbar.component.ts
247
252
│ ├── assets
253
+ │ │ ├── data.json
248
254
│ │ └── svg
249
255
│ │ └── more.svg
250
256
│ ├── css
251
257
│ │ └── main.css
252
258
│ ├── index.html
259
+ │ ├── testing
260
+ │ │ └── router
261
+ │ │ ├── mock-location-strategy.ts
262
+ │ │ └── router-testing-providers.ts
253
263
│ ├── tsconfig.json
254
264
│ └── typings.d.ts
255
265
├── test-main.js <- testing configuration
@@ -261,6 +271,10 @@ Forks of this project demonstrate how to extend and integrate with other librari
261
271
│ │ └── seed.config.ts <- generic configuration of the seed project
262
272
│ ├── config.ts <- exported configuration (merge both seed.config and project.config, project.config overrides seed.config)
263
273
│ ├── debug.ts
274
+ │ ├── env <- environment configuration
275
+ │ │ ├── base.ts
276
+ │ │ ├── dev.ts
277
+ │ │ └── prod.ts
264
278
│ ├── manual_typings
265
279
│ │ ├── project <- manual ambient typings for the project
266
280
│ │ │ └── sample.package.d.ts
@@ -302,6 +316,7 @@ Forks of this project demonstrate how to extend and integrate with other librari
302
316
│ │ ├── build.js.tools.ts
303
317
│ │ ├── check.versions.ts
304
318
│ │ ├── clean.all.ts
319
+ │ │ ├── clean.coverage.ts
305
320
│ │ ├── clean.dev.ts
306
321
│ │ ├── clean.prod.ts
307
322
│ │ ├── clean.tools.ts
0 commit comments