You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add folder structure docs for new contributors (#1991)
* Adding folder structure to help people navigate through project. It helps in resolving issues by providing brief description of each package and its purpose
* Removing unnecessary packages from Folder structure heading
* Update CONTRIBUTING.md
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,36 @@ Please **ask first** if somebody else is already working on this or the core dev
41
41
42
42
Please also provide a **test plan**, i.e. specify how you verified that your addition works.
43
43
44
+
## Folder Structure of Create React App
45
+
`create-react-app` is a monorepo, meaning it is divided into independent sub-packages.<br>
46
+
These packages can be found in the [`packages/`](https://github.com/facebookincubator/create-react-app/tree/master/packages) directory.
This package is the heart of the project, which contains the scripts for setting up the development server, building production builds, configuring all software used, etc.<br>
72
+
All functionality must be retained (and configuration given to the user) if they choose to eject.
73
+
44
74
## Setting Up a Local Copy
45
75
46
76
1. Clone the repo with `git clone https://github.com/facebookincubator/create-react-app`
0 commit comments