Skip to content

Commit 01c92e7

Browse files
matarmatar
matar
authored and
matar
committed
* 'master' of https://github.com/facebookincubator/create-react-app: Make error overlay to run in the context of the iframe (facebook#3142) Fix Windows compatibility (facebook#3232) Fix package management link in README (facebook#3227) Watch for changes in `src/**/node_modules` (facebook#3230) More spec compliant HTML template (facebook#2914) Minor change to highlight dev proxy behaviour (facebook#3075) Correct manual proxy documentation (facebook#3185) Improve grammar in README (facebook#3211) Publish Fix license comments Changelog for 1.0.14 BSD+Patents -> MIT (facebook#3189) Add link to active CSS modules discussion (facebook#3163) Update webpack-dev-server to 2.8.2 (facebook#3157) Part of class fields to stage 3 (facebook#2908) Update unclear wording in webpack config docs (facebook#3160) Display pid in already running message (facebook#3131) Link local react-error-overlay package in kitchensink test
2 parents 8a152ae + cd3d04b commit 01c92e7

File tree

172 files changed

+756
-765
lines changed

Some content is hidden

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

172 files changed

+756
-765
lines changed

CHANGELOG.md

+85
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,88 @@
1+
## 1.0.14 (September 26, 2017)
2+
3+
#### :bug: Bug Fix
4+
5+
* `react-dev-utils`
6+
7+
* [#3098](https://github.com/facebookincubator/create-react-app/pull/3098) Always reload the page on next compile after a runtime error. ([@Timer](https://github.com/Timer))
8+
9+
* `react-error-overlay`
10+
11+
* [#3079](https://github.com/facebookincubator/create-react-app/pull/3079) Fix code context on Windows. ([@Timer](https://github.com/Timer))
12+
13+
#### :nail_care: Enhancement
14+
15+
* `react-dev-utils`
16+
17+
* [#3077](https://github.com/facebookincubator/create-react-app/pull/3077) Auto-detect running editor on Linux for error overlay. ([@gulderov](https://github.com/gulderov))
18+
19+
* [#3131](https://github.com/facebookincubator/create-react-app/pull/3131) Display process pid in already running message. ([@Pajn](https://github.com/Pajn))
20+
21+
#### :memo: Documentation
22+
23+
* Other
24+
25+
* [#3163](https://github.com/facebookincubator/create-react-app/pull/3163) Add link to active CSS modules discussion. ([@NeekSandhu](https://github.com/NeekSandhu))
26+
27+
* `react-scripts`
28+
29+
* [#2908](https://github.com/facebookincubator/create-react-app/pull/2908) Note that class fields have progressed to stage 3. ([@rickbeerendonk](https://github.com/rickbeerendonk))
30+
31+
* [#3160](https://github.com/facebookincubator/create-react-app/pull/3160) Update unclear wording in webpack configuration (file loader section). ([@kristiehoward](https://github.com/kristiehoward))
32+
33+
* `eslint-config-react-app`
34+
35+
* [#3072](https://github.com/facebookincubator/create-react-app/pull/3072) Update eslint versions for install instructions. ([@jdcrensh](https://github.com/jdcrensh))
36+
37+
#### :house: Internal
38+
39+
* `react-scripts`
40+
41+
* [#3157](https://github.com/facebookincubator/create-react-app/pull/3157) Update `webpack-dev-server` to `2.8.2`. ([@nikolas](https://github.com/nikolas))
42+
43+
* [#2989](https://github.com/facebookincubator/create-react-app/pull/2989) Update install template to match accessibility guidelines. ([@davidleger95](https://github.com/davidleger95))
44+
45+
* `react-error-overlay`
46+
47+
* [#3065](https://github.com/facebookincubator/create-react-app/pull/3065) Updated `react-error-overlay` to latest Flow (`0.54.0`). ([@duvet86](https://github.com/duvet86))
48+
49+
* [#3102](https://github.com/facebookincubator/create-react-app/pull/3102) Clean target directory before compiling overlay. ([@Timer](https://github.com/Timer))
50+
51+
* `create-react-app`, `react-dev-utils`, `react-error-overlay`, `react-scripts`
52+
53+
* [#3058](https://github.com/facebookincubator/create-react-app/pull/3058) Re-run prettier for all files and pin the version. ([@viankakrisna](https://github.com/viankakrisna))
54+
55+
* [#3107](https://github.com/facebookincubator/create-react-app/pull/3107) Run CI on `npm@^4`. ([@viankakrisna](https://github.com/viankakrisna))
56+
57+
#### Committers: 12
58+
59+
- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
60+
- David Leger ([davidleger95](https://github.com/davidleger95))
61+
- Joe Haddad ([Timer](https://github.com/Timer))
62+
- Jon Crenshaw ([jdcrensh](https://github.com/jdcrensh))
63+
- Kristie Howard ([kristiehoward](https://github.com/kristiehoward))
64+
- Luca ([duvet86](https://github.com/duvet86))
65+
- Neek Sandhu ([NeekSandhu](https://github.com/NeekSandhu))
66+
- Nik Nyby ([nikolas](https://github.com/nikolas))
67+
- Rasmus Eneman ([Pajn](https://github.com/Pajn))
68+
- Rick Beerendonk ([rickbeerendonk](https://github.com/rickbeerendonk))
69+
- Sophie Alpert ([sophiebits](https://github.com/sophiebits))
70+
- [gulderov](https://github.com/gulderov)
71+
72+
### Migrating from 1.0.13 to 1.0.14
73+
74+
Inside any created project that has not been ejected, run:
75+
76+
```
77+
npm install --save --save-exact [email protected]
78+
```
79+
80+
or
81+
82+
```
83+
yarn add --exact [email protected]
84+
```
85+
186
## 1.0.13 (September 2, 2017)
287

388
#### :bug: Bug Fix

LICENSE

+17-26
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,21 @@
1-
BSD License
1+
MIT License
22

3-
For create-react-app software
3+
Copyright (c) 2013-present, Facebook, Inc.
44

5-
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
611

7-
Redistribution and use in source and binary forms, with or without modification,
8-
are permitted provided that the following conditions are met:
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
914

10-
* Redistributions of source code must retain the above copyright notice, this
11-
list of conditions and the following disclaimer.
12-
13-
* Redistributions in binary form must reproduce the above copyright notice,
14-
this list of conditions and the following disclaimer in the documentation
15-
and/or other materials provided with the distribution.
16-
17-
* Neither the name Facebook nor the names of its contributors may be used to
18-
endorse or promote products derived from this software without specific
19-
prior written permission.
20-
21-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
22-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
25-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
28-
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

PATENTS

-33
This file was deleted.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Create React apps with no build configuration.
66
* [User Guide](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md) – How to develop apps bootstrapped with Create React App.
77

88
Create React App works on macOS, Windows, and Linux.<br>
9-
If something doesn’t work please [file an issue](https://github.com/facebookincubator/create-react-app/issues/new).
9+
If something doesn’t work, please [file an issue](https://github.com/facebookincubator/create-react-app/issues/new).
1010

1111
## Quick Overview
1212

@@ -84,7 +84,7 @@ Once the installation is done, you can run some commands inside the project fold
8484
Runs the app in development mode.<br>
8585
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
8686

87-
The page will reload if you make edits.<br>
87+
The page will automatically reload if you make changes to the code.<br>
8888
You will see the build errors and lint warnings in the console.
8989

9090
<img src='https://camo.githubusercontent.com/41678b3254cf583d3186c365528553c7ada53c6e/687474703a2f2f692e696d6775722e636f6d2f466e4c566677362e706e67' width='600' alt='Build errors'>
@@ -191,7 +191,7 @@ Some features are currently **not supported**:
191191

192192
* Server rendering.
193193
* Some experimental syntax extensions (e.g. decorators).
194-
* CSS Modules.
194+
* CSS Modules (see [#2285](https://github.com/facebookincubator/create-react-app/pull/2285)).
195195
* Importing LESS or Sass directly ([but you still can use them](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-a-css-preprocessor-sass-less-etc)).
196196
* Hot reloading of components.
197197

@@ -255,4 +255,4 @@ Notable alternatives also include:
255255
* [gluestick](https://github.com/TrueCar/gluestick)
256256

257257
You can also use module bundlers like [webpack](http://webpack.js.org) and [Browserify](http://browserify.org/) directly.<br>
258-
React documentation includes [a walkthrough](https://facebook.github.io/react/docs/package-management.html) on this topic.
258+
React documentation includes [a walkthrough](https://reactjs.org/docs/installation.html#development-and-production-versions) on this topic.

packages/babel-preset-react-app/index.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97
'use strict';
108

packages/babel-preset-react-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "babel-preset-react-app",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"description": "Babel preset used by Create React App",
55
"repository": "facebookincubator/create-react-app",
6-
"license": "BSD-3-Clause",
6+
"license": "MIT",
77
"bugs": {
88
"url": "https://github.com/facebookincubator/create-react-app/issues"
99
},

packages/create-react-app/createReactApp.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97

108
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

packages/create-react-app/index.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22

33
/**
44
* Copyright (c) 2015-present, Facebook, Inc.
5-
* All rights reserved.
65
*
7-
* This source code is licensed under the BSD-style license found in the
8-
* LICENSE file in the root directory of this source tree. An additional grant
9-
* of patent rights can be found in the PATENTS file in the same directory.
6+
* This source code is licensed under the MIT license found in the
7+
* LICENSE file in the root directory of this source tree.
108
*/
119

1210
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

packages/create-react-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "create-react-app",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"keywords": [
55
"react"
66
],
77
"description": "Create React apps with no build configuration.",
88
"repository": "facebookincubator/create-react-app",
9-
"license": "BSD-3-Clause",
9+
"license": "MIT",
1010
"engines": {
1111
"node": ">=4"
1212
},

packages/eslint-config-react-app/index.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97

108
'use strict';

packages/eslint-config-react-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "eslint-config-react-app",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "ESLint configuration used by Create React App",
55
"repository": "facebookincubator/create-react-app",
6-
"license": "BSD-3-Clause",
6+
"license": "MIT",
77
"bugs": {
88
"url": "https://github.com/facebookincubator/create-react-app/issues"
99
},

packages/react-dev-utils/FileSizeReporter.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97

108
'use strict';

packages/react-dev-utils/InterpolateHtmlPlugin.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97

108
// This Webpack plugin lets us interpolate custom variables into `index.html`.

packages/react-dev-utils/ModuleScopePlugin.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97

108
'use strict';

packages/react-dev-utils/WatchMissingNodeModulesPlugin.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97

108
// This Webpack plugin ensures `npm install <library>` forces a project rebuild.

packages/react-dev-utils/WebpackDevServerUtils.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97
'use strict';
108

packages/react-dev-utils/checkRequiredFiles.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97

108
'use strict';

packages/react-dev-utils/clearConsole.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97

108
'use strict';

packages/react-dev-utils/crossSpawn.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Copyright (c) 2015-present, Facebook, Inc.
3-
* All rights reserved.
43
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
7-
* of patent rights can be found in the PATENTS file in the same directory.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
86
*/
97

108
'use strict';

0 commit comments

Comments
 (0)