This repository was archived by the owner on Dec 4, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
public/docs/ts/latest/guide Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -953,12 +953,12 @@ a(href="#toc") Back to top
953
953
954
954
Have a near-term view of implementation and a long-term vision. Start small but keep in mind where the app is heading down the road.
955
955
956
- All of the app's code goes in a folder named `app `.
956
+ All of the app's code goes in a folder named `src `.
957
957
All feature areas are in their own folder, with their own Angular module.
958
958
959
959
All content is one asset per file. Each component, service, and pipe is in its own file.
960
- All third party vendor scripts are stored in another folder and not in the `app ` folder.
961
- You didn't write them and you don't want them cluttering `app `.
960
+ All third party vendor scripts are stored in another folder and not in the `src ` folder.
961
+ You didn't write them and you don't want them cluttering `src `.
962
962
Use the naming conventions for files in this guide.
963
963
964
964
a( href ="#toc" ) Back to top
@@ -1105,7 +1105,7 @@ a(href="#toc") Back to top
1105
1105
1106
1106
.s-rule.do
1107
1107
:marked
1108
- **Do** put all of the app's code in a folder named `app `.
1108
+ **Do** put all of the app's code in a folder named `src `.
1109
1109
1110
1110
.s-rule.consider
1111
1111
:marked
@@ -1176,6 +1176,8 @@ a(id='file-tree')
1176
1176
.file app-routing.module.ts
1177
1177
.file main.ts
1178
1178
.file index.html
1179
+ .file ...
1180
+ .file node_modules/...
1179
1181
.file ...
1180
1182
:marked
1181
1183
@@ -1379,7 +1381,7 @@ a(href="#toc") Back to top
1379
1381
.file app-routing.module.ts
1380
1382
.file main.ts
1381
1383
.file index.html
1382
- .file ...
1384
+ .file ...
1383
1385
:marked
1384
1386
1385
1387
+ makeTabs(
You can’t perform that action at this time.
0 commit comments