Skip to content
This repository was archived by the owner on Oct 19, 2022. It is now read-only.

Commit 7c25b35

Browse files
author
Dominik Rowicki
authored
Merge pull request #40 from netguru/facebookincubator-master
Merge changes from upstream v.1.1.1
2 parents 936367f + b90c50c commit 7c25b35

File tree

4 files changed

+47
-6
lines changed

4 files changed

+47
-6
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
## 1.1.1 (February 2, 2018)
2+
3+
#### :bug: Bug Fix
4+
* `react-scripts`
5+
* [#4000](https://github.com/facebook/create-react-app/pull/4000) Fix escaping `$` in environment variables. ([@iansu](https://github.com/iansu))
6+
7+
#### :nail_care: Enhancement
8+
* `react-scripts`
9+
* [#4006](https://github.com/facebook/create-react-app/pull/4006) Add Node 9 compatibility for `fsevents`. ([@gaearon](https://github.com/gaearon))
10+
11+
#### :memo: Documentation
12+
* `react-scripts`
13+
* [#3971](https://github.com/facebook/create-react-app/pull/3971) Update instructions for continuous delivery with Netlify. ([@hubgit](https://github.com/hubgit))
14+
* [#3894](https://github.com/facebook/create-react-app/pull/3894) Include `{json,css}` files in prettier command. ([@reyronald](https://github.com/reyronald))
15+
16+
#### :house: Internal
17+
* `create-react-app`
18+
* [#3853](https://github.com/facebook/create-react-app/pull/3853) pin envinfo version to 3.4.2. ([@bondz](https://github.com/bondz))
19+
20+
#### Committers: 6
21+
- Alf Eaton ([hubgit](https://github.com/hubgit))
22+
- Bond ([bondz](https://github.com/bondz))
23+
- Dan Abramov ([gaearon](https://github.com/gaearon))
24+
- Ian Sutherland ([iansu](https://github.com/iansu))
25+
- Ronald Rey ([reyronald](https://github.com/reyronald))
26+
27+
### Migrating from 1.1.0 to 1.1.1
28+
29+
Inside any created project that has not been ejected, run:
30+
31+
```
32+
npm install --save --save-exact [email protected]
33+
```
34+
35+
or
36+
37+
```
38+
yarn add --exact [email protected]
39+
```
40+
141
## 1.1.0 (January 15, 2018)
242

343
#### :rocket: New Feature

packages/create-react-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-react-app",
3-
"version": "1.5.0",
3+
"version": "1.5.2",
44
"keywords": [
55
"react"
66
],
@@ -24,7 +24,7 @@
2424
"chalk": "^1.1.1",
2525
"commander": "^2.9.0",
2626
"cross-spawn": "^4.0.0",
27-
"envinfo": "^3.8.0",
27+
"envinfo": "3.4.2",
2828
"fs-extra": "^1.0.0",
2929
"hyperquest": "^2.1.2",
3030
"semver": "^5.0.3",

packages/react-scripts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"chalk": "1.1.3",
3636
"css-loader": "0.28.7",
3737
"dotenv": "4.0.0",
38-
"dotenv-expand": "4.0.1",
38+
"dotenv-expand": "4.2.0",
3939
"eslint": "~4.15.0",
4040
"eslint-config-airbnb": "^16.1.0",
4141
"eslint-import-resolver-webpack": "^0.8.1",
@@ -80,6 +80,6 @@
8080
"normalize.css": "^7.0.0"
8181
},
8282
"optionalDependencies": {
83-
"fsevents": "1.1.2"
83+
"fsevents": "^1.1.3"
8484
}
8585
}

packages/react-scripts/template/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ Next we add a 'lint-staged' field to the `package.json`, for example:
348348
"scripts": {
349349
```
350350

351-
Now, whenever you make a commit, Prettier will format the changed files automatically. You can also run `./node_modules/.bin/prettier --single-quote --write "src/**/*.{js,jsx}"` to format your entire project for the first time.
351+
Now, whenever you make a commit, Prettier will format the changed files automatically. You can also run `./node_modules/.bin/prettier --single-quote --write "src/**/*.{js,jsx,json,css}"` to format your entire project for the first time.
352352

353353
Next you might want to integrate Prettier in your favorite editor. Read the section on [Editor Integration](https://prettier.io/docs/en/editors.html) on the Prettier GitHub page.
354354

@@ -2264,7 +2264,8 @@ With this setup Netlify will build and deploy when you push to git or open a pul
22642264

22652265
1. [Start a new netlify project](https://app.netlify.com/signup)
22662266
2. Pick your Git hosting service and select your repository
2267-
3. Click `Build your site`
2267+
3. Set `yarn build` as the build command and `build` as the publish directory
2268+
4. Click `Deploy site`
22682269

22692270
**Support for client-side routing:**
22702271

0 commit comments

Comments
 (0)