Skip to content

Commit 4584b38

Browse files
author
Christian Dobert
authored
docs(readme): update directory structure (mgechev#1190)
Update the directory structure section in the README.md.
1 parent e1940d8 commit 4584b38

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -214,21 +214,26 @@ Forks of this project demonstrate how to extend and integrate with other librari
214214
│   │   │   ├── about.component.html
215215
│   │   │   ├── about.component.spec.ts
216216
│   │   │   ├── about.component.ts
217+
│   │   │   ├── about.routes.ts
217218
│   │   │   └── index.ts
218219
│   │   ├── +home
219220
│   │   │   ├── home.component.css
220221
│   │   │   ├── home.component.e2e-spec.ts
221222
│   │   │   ├── home.component.html
222223
│   │   │   ├── home.component.spec.ts
223224
│   │   │   ├── home.component.ts
225+
│   │   │   ├── home.routes.ts
224226
│   │   │   └── index.ts
225227
│   │   ├── app.component.e2e-spec.ts
226228
│   │   ├── app.component.html
227229
│   │   ├── app.component.spec.ts
228230
│   │   ├── app.component.ts
231+
│   │   ├── app.routes.ts
229232
│   │   ├── hot_loader_main.ts
230233
│   │   ├── main.ts
231234
│   │   └── shared
235+
│   │   ├── config
236+
│   │   │   └── env.config.ts
232237
│   │   ├── index.ts
233238
│   │   ├── name-list
234239
│   │   │   ├── index.ts
@@ -245,11 +250,16 @@ Forks of this project demonstrate how to extend and integrate with other librari
245250
│   │   ├── toolbar.component.html
246251
│   │   └── toolbar.component.ts
247252
│   ├── assets
253+
│   │   ├── data.json
248254
│   │   └── svg
249255
│   │   └── more.svg
250256
│   ├── css
251257
│   │   └── main.css
252258
│   ├── index.html
259+
│   ├── testing
260+
│   │   └── router
261+
│   │   ├── mock-location-strategy.ts
262+
│   │   └── router-testing-providers.ts
253263
│   ├── tsconfig.json
254264
│   └── typings.d.ts
255265
├── test-main.js <- testing configuration
@@ -261,6 +271,10 @@ Forks of this project demonstrate how to extend and integrate with other librari
261271
│   │   └── seed.config.ts <- generic configuration of the seed project
262272
│   ├── config.ts <- exported configuration (merge both seed.config and project.config, project.config overrides seed.config)
263273
│   ├── debug.ts
274+
│   ├── env <- environment configuration
275+
│   │   ├── base.ts
276+
│   │   ├── dev.ts
277+
│   │   └── prod.ts
264278
│   ├── manual_typings
265279
│   │   ├── project <- manual ambient typings for the project
266280
│   │   │   └── sample.package.d.ts
@@ -302,6 +316,7 @@ Forks of this project demonstrate how to extend and integrate with other librari
302316
│   │   ├── build.js.tools.ts
303317
│   │   ├── check.versions.ts
304318
│   │   ├── clean.all.ts
319+
│   │   ├── clean.coverage.ts
305320
│   │   ├── clean.dev.ts
306321
│   │   ├── clean.prod.ts
307322
│   │   ├── clean.tools.ts

0 commit comments

Comments
 (0)