Skip to content

Commit 25184c4

Browse files
MichaelDeBoeygaearon
authored andcommitted
Fix links to package (facebook#3898)
1 parent db9d0ab commit 25184c4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1544
-1544
lines changed

.github/ISSUE_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@
6868
There are a few common documented problems, such as watcher not detecting changes, or build failing.
6969
They are described in the Troubleshooting section of the User Guide:
7070
71-
https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#troubleshooting
71+
https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#troubleshooting
7272
7373
Please scan these few sections for common problems.
7474
Additionally, you can search the User Guide itself for something you're having issues with:
7575
76-
https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md
76+
https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md
7777
7878
If you didn't find the solution, please share which words you searched for.
7979
This helps us improve documentation for future readers who might encounter the same problem.

CHANGELOG-0.x.md

+314-314
Large diffs are not rendered by default.

CHANGELOG.md

+397-397
Large diffs are not rendered by default.

CONTRIBUTING.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Please also provide a **test plan**, i.e. specify how you verified that your add
4343

4444
## Folder Structure of Create React App
4545
`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.
46+
These packages can be found in the [`packages/`](https://github.com/facebook/create-react-app/tree/master/packages) directory.
4747

4848
### Overview of directory structure
4949
```
@@ -55,25 +55,25 @@ packages/
5555
react-scripts/
5656
```
5757
### Package Descriptions
58-
#### [babel-preset-react-app](https://github.com/facebookincubator/create-react-app/tree/master/packages/babel-preset-react-app)
58+
#### [babel-preset-react-app](https://github.com/facebook/create-react-app/tree/master/packages/babel-preset-react-app)
5959
This package is a babel preset intended to be used with `react-scripts`.<br>
6060
It targets platforms that React is designed to support (IE 9+) and enables experimental features used heavily at Facebook.<br>
6161
This package is enabled by default for all `create-react-app` scaffolded applications.
62-
#### [create-react-app](https://github.com/facebookincubator/create-react-app/tree/master/packages/create-react-app)
62+
#### [create-react-app](https://github.com/facebook/create-react-app/tree/master/packages/create-react-app)
6363
The global CLI command code can be found in this directory, and shouldn't often be changed. It should run on Node 0.10+.
64-
#### [eslint-config-react-app](https://github.com/facebookincubator/create-react-app/tree/master/packages/eslint-config-react-app)
64+
#### [eslint-config-react-app](https://github.com/facebook/create-react-app/tree/master/packages/eslint-config-react-app)
6565
This package contains a conservative set of rules focused on making errors apparent and enforces no style rules.<br>
6666
This package is enabled by default for all `create-react-app` scaffolded applications.
67-
#### [react-dev-utils](https://github.com/facebookincubator/create-react-app/tree/master/packages/react-dev-utils)
67+
#### [react-dev-utils](https://github.com/facebook/create-react-app/tree/master/packages/react-dev-utils)
6868
This package contains utilities used for `react-scripts` and sister packages.<br>
6969
Its main purpose is to conceal code which the user shouldn't be burdened with upon ejecting.
70-
#### [react-scripts](https://github.com/facebookincubator/create-react-app/tree/master/packages/react-scripts)
70+
#### [react-scripts](https://github.com/facebook/create-react-app/tree/master/packages/react-scripts)
7171
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>
7272
All functionality must be retained (and configuration given to the user) if they choose to eject.
7373

7474
## Setting Up a Local Copy
7575

76-
1. Clone the repo with `git clone https://github.com/facebookincubator/create-react-app`
76+
1. Clone the repo with `git clone https://github.com/facebook/create-react-app`
7777

7878
2. Run `yarn` in the root `create-react-app` folder.
7979

@@ -111,7 +111,7 @@ By default git would use `CRLF` line endings which would cause the scripts to fa
111111

112112
## Cutting a Release
113113

114-
1. Tag all merged pull requests that go into the release with the relevant milestone. Each merged PR should also be labeled with one of the [labels](https://github.com/facebookincubator/create-react-app/labels) named `tag: ...` to indicate what kind of change it is.
114+
1. Tag all merged pull requests that go into the release with the relevant milestone. Each merged PR should also be labeled with one of the [labels](https://github.com/facebook/create-react-app/labels) named `tag: ...` to indicate what kind of change it is.
115115
2. Close the milestone.
116116
3. In most releases, only `react-scripts` needs to be released. If you don’t have any changes to the `packages/create-react-app` folder, you don’t need to bump its version or publish it (the publish script will publish only changed packages).
117117
4. Note that files in `packages/create-react-app` should be modified with extreme caution. Since it’s a global CLI, any version of `create-react-app` (global CLI) including very old ones should work with the latest version of `react-scripts`.

0 commit comments

Comments
 (0)