diff --git a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html index 8405835c..25a50eae 100644 --- a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html +++ b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html @@ -236,47 +236,11 @@ If you use SSR (Server Side Rendering) you can even include your landing page as one of the modules and keep everything in a single app.

-

app/shared/

-

- This directory is designed to contain anything re-usable such as components, directives and pipes. By default, it doesn't include any of them but when you create - one for your app, you can put it here. -

-

- The only file here is the shared.module.ts file which simply imports and exports some of the common Angular modules so you don't have to import them - one by one. You can just import the shared.module.ts into your module whenever you need one of those common modules. -

-

- Currently it imports and exports: -

- -

- You can add/remove anything to/from the shared.module.ts file and use the module to import commonly used modules without needing to remember them - one by one. -

-

assets/

Default Angular assets folder.

-

environments/

-

- Default Angular environments folder. -

-

styles/

This folder contains 4 different scss files: diff --git a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts index 94fd0647..021647ed 100644 --- a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts +++ b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts @@ -72,12 +72,10 @@ export class DirectoryStructureComponent implements OnInit name : 'core/', children: [ {name: 'auth/'}, - {name: 'config/'}, {name: 'icons/'}, {name: 'navigation/'}, {name: 'transloco/'}, {name: 'user/'}, - {name: 'core.module.ts'}, ], }, { @@ -88,8 +86,6 @@ export class DirectoryStructureComponent implements OnInit {name: 'layout.component.html'}, {name: 'layout.component.scss'}, {name: 'layout.component.ts'}, - {name: 'layout.module.ts'}, - {name: 'layout.types.ts'}, ], }, { @@ -111,16 +107,9 @@ export class DirectoryStructureComponent implements OnInit {name: 'landing/'}, ], }, - { - name : 'shared/', - children: [ - {name: 'shared.module.ts'}, - ], - }, {name: 'app.component.html'}, {name: 'app.component.scss'}, {name: 'app.component.ts'}, - {name: 'app.module.ts'}, {name: 'app.resolvers.ts'}, {name: 'app.routing.ts'}, ], @@ -145,7 +134,7 @@ export class DirectoryStructureComponent implements OnInit {name: 'tailwind/'}, {name: 'validators/'}, {name: 'version/'}, - {name: 'fuse.module.ts'}, + {name: 'fuse.provider.ts'}, {name: 'index.ts'}, ], }, @@ -160,13 +149,6 @@ export class DirectoryStructureComponent implements OnInit {name: 'styles/'}, ], }, - { - name : 'environments/', - children: [ - {name: 'environment.prod.ts'}, - {name: 'environment.ts'}, - ], - }, { name : 'styles/', children: [ @@ -177,11 +159,8 @@ export class DirectoryStructureComponent implements OnInit }, {name: 'favicon-16x16.png'}, {name: 'favicon-32x32.png'}, - {name: 'global.d.ts'}, {name: 'index.html'}, {name: 'main.ts'}, - {name: 'polyfills.ts'}, - {name: 'test.ts'}, ], }, ];