doc(getting-started): treeview markdown

This commit is contained in:
ben 2019-02-13 13:51:39 -05:00 committed by Victor Savkin
parent b1d008279b
commit 667e1a3619

View File

@ -64,34 +64,50 @@ ng g application myapp
The result will look like this: The result will look like this:
```console ```treeview
apps/ <workspace name>/
myapp/ ├── README.md
src/ ├── angular.json
app/ ├── apps/
assets/ │   ├── myapp/
environment/ │   │   ├── browserslist
favicon.ico │   │   ├── jest.conf.js
index.html │   │   ├── src/
main.ts │   │   │   ├── app/
polyfills.ts │   │   │   ├── assets/
styles.css │   │   │   ├── environments/
tsconfig.json │   │   │   ├── favicon.ico
tsconfig.app.json │   │   │   ├── index.html
tsconfig.spec.json │   │   │   ├── main.ts
tslint.json │   │   │   ├── polyfills.ts
myapp-e2e/ │   │   │   ├── styles.scss
src/ │   │   │   └── test.ts
tsconfig.json │   │   ├── tsconfig.app.json
tsconfig.e2e.json │   │   ├── tsconfig.json
tslint.json │   │   ├── tsconfig.spec.json
libs/ │   │   └── tslint.json
tools/ │   └── myapp-e2e/
package.json │      ├── cypress.json
tsconfig.json │      ├── src/
tslint.json │      │   ├── fixtures/
angular.json │      │   │   └── example.json
nx.json │      │   ├── integration/
│      │   │   └── app.spec.ts
│      │   ├── plugins/
│      │   │   └── index.ts
│      │   └── support/
│      │      ├── app.po.ts
│      │      ├── commands.ts
│      │      └── index.ts
│      ├── tsconfig.e2e.json
│      ├── tsconfig.json
│      └── tslint.json
├── libs/
├── nx.json
├── package.json
├── tools/
├── tsconfig.json
└── tslint.json
``` ```
All the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future. All the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.