Skip to content

Commit 9bad6a7

Browse files
committed
# package.json
2 parents 317cfe6 + ad35fd1 commit 9bad6a7

File tree

14 files changed

+112
-12
lines changed

14 files changed

+112
-12
lines changed

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
Please scan these few sections for common problems.
6565
Additionally, you can search the User Guide itself for something you're having issues with:
6666
67-
https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.me
67+
https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md
6868
6969
If you didn't find the solution, please share which words you searched for.
7070
This helps us improve documentation for future readers who might encounter the same problem.

CHANGELOG.md

+83
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,86 @@
1+
## 1.0.10 (June 29, 2017)
2+
3+
#### :bug: Bug Fix
4+
5+
* `react-dev-utils`
6+
7+
* [#2692](https://github.com/facebookincubator/create-react-app/pull/2692) Fix IE11 crash in development. ([@pdhoopr](https://github.com/pdhoopr))
8+
9+
* `create-react-app`
10+
* [#2683](https://github.com/facebookincubator/create-react-app/pull/2683) Fix a typo. ([@BenBrostoff](https://github.com/BenBrostoff))
11+
12+
#### :memo: Documentation
13+
14+
* README
15+
16+
* [#2402](https://github.com/facebookincubator/create-react-app/pull/2402) Added `gluestick` to the alternatives section. ([@JoeCortopassi](https://github.com/JoeCortopassi))
17+
18+
#### Committers: 5
19+
- Ben Brostoff ([BenBrostoff](https://github.com/BenBrostoff))
20+
- Forbes Lindesay ([ForbesLindesay](https://github.com/ForbesLindesay))
21+
- Joe Haddad ([Timer](https://github.com/Timer))
22+
- Patrick Hooper ([pdhoopr](https://github.com/pdhoopr))
23+
- [JoeCortopassi](https://github.com/JoeCortopassi)
24+
25+
### Migrating from 1.0.9 to 1.0.10
26+
27+
Inside any created project that has not been ejected, run:
28+
29+
```
30+
npm install --save --save-exact [email protected]
31+
```
32+
33+
or
34+
35+
```
36+
yarn add --exact [email protected]
37+
```
38+
39+
## 1.0.9 (June 29, 2017)
40+
41+
#### :bug: Bug Fix
42+
43+
* `react-scripts`
44+
45+
* [#2680](https://github.com/facebookincubator/create-react-app/pull/2680) Fix external CSS imports. ([@gaearon](https://github.com/gaearon))
46+
47+
#### :memo: Documentation
48+
49+
* `react-scripts`
50+
51+
* [#2679](https://github.com/facebookincubator/create-react-app/pull/2679) Fix minor typo. ([@dbanck](https://github.com/dbanck))
52+
* [#2666](https://github.com/facebookincubator/create-react-app/pull/2666) Add more info about Apache client side routing. ([@viankakrisna](https://github.com/viankakrisna))
53+
* [#2671](https://github.com/facebookincubator/create-react-app/pull/2671) Add JSON and CSS to Prettier instructions. ([@jbovenschen](https://github.com/jbovenschen))
54+
55+
#### :house: Internal
56+
57+
* Other
58+
59+
* [#2673](https://github.com/facebookincubator/create-react-app/pull/2673) Bootstrap with Yarn. ([@Timer](https://github.com/Timer))
60+
* [#2659](https://github.com/facebookincubator/create-react-app/pull/2659) Test Node 8 on Travis. ([@gaearon](https://github.com/gaearon))
61+
62+
#### Committers: 5
63+
64+
- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
65+
- Dan Abramov ([gaearon](https://github.com/gaearon))
66+
- Daniel Banck ([dbanck](https://github.com/dbanck))
67+
- Jaco Bovenschen ([jbovenschen](https://github.com/jbovenschen))
68+
- Joe Haddad ([Timer](https://github.com/Timer))
69+
70+
### Migrating from 1.0.8 to 1.0.9
71+
72+
Inside any created project that has not been ejected, run:
73+
74+
```
75+
npm install --save --save-exact [email protected]
76+
```
77+
78+
or
79+
80+
```
81+
yarn add --exact [email protected]
82+
```
83+
184
## 1.0.8 (June 28, 2017)
285

386
#### :bug: Bug Fix

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ Notable alternatives also include:
251251
* [react-app](https://github.com/kriasoft/react-app)
252252
* [dev-toolkit](https://github.com/stoikerty/dev-toolkit)
253253
* [sku](https://github.com/seek-oss/sku)
254+
* [gluestick](https://github.com/TrueCar/gluestick)
254255

255256
You can also use module bundlers like [webpack](http://webpack.js.org) and [Browserify](http://browserify.org/) directly.<br>
256257
React documentation includes [a walkthrough](https://facebook.github.io/react/docs/package-management.html) on this topic.

packages/create-react-app/createReactApp.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ function createApp(name, verbose, version, template) {
169169
if (!semver.satisfies(process.version, '>=6.0.0')) {
170170
console.log(
171171
chalk.yellow(
172-
`You are using Node ${process.version} so the project will be boostrapped with an old unsupported version of tools.\n\n` +
172+
`You are using Node ${process.version} so the project will be bootstrapped with an old unsupported version of tools.\n\n` +
173173
`Please update to Node 6 or higher for a better, fully supported experience.\n`
174174
)
175175
);

packages/create-react-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-react-app",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"keywords": [
55
"react"
66
],

packages/react-dev-utils/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-dev-utils",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Webpack utilities used by Create React App",
55
"repository": "facebookincubator/create-react-app",
66
"license": "BSD-3-Clause",
@@ -49,7 +49,7 @@
4949
"recursive-readdir": "2.2.1",
5050
"shell-quote": "1.6.1",
5151
"sockjs-client": "1.1.4",
52-
"strip-ansi": "4.0.0",
52+
"strip-ansi": "3.0.1",
5353
"text-table": "0.2.0"
5454
}
5555
}

packages/react-error-overlay/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-error-overlay",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"description": "An overlay for displaying stack frames.",
55
"main": "lib/index.js",
66
"scripts": {
@@ -34,7 +34,7 @@
3434
"anser": "1.2.5",
3535
"babel-code-frame": "6.22.0",
3636
"babel-runtime": "6.23.0",
37-
"react-dev-utils": "^3.0.1",
37+
"react-dev-utils": "^3.0.2",
3838
"settle-promise": "1.0.0",
3939
"source-map": "0.5.6"
4040
},
@@ -49,7 +49,7 @@
4949
"eslint-plugin-import": "2.2.0",
5050
"eslint-plugin-jsx-a11y": "5.0.3",
5151
"eslint-plugin-react": "7.0.1",
52-
"flow-bin": "0.46.0",
52+
"flow-bin": "0.49.1",
5353
"jest": "20.0.1",
5454
"jest-fetch-mock": "1.1.1"
5555
},

packages/react-scripts/config/webpack.config.dev.js

+3
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,9 @@ module.exports = {
227227
{
228228
loader: require.resolve('postcss-loader'),
229229
options: {
230+
// Necessary for external CSS imports to work
231+
// https://github.com/facebookincubator/create-react-app/issues/2677
232+
ident: 'postcss',
230233
plugins: () => [
231234
require('postcss-flexbugs-fixes'),
232235
autoprefixer({

packages/react-scripts/config/webpack.config.prod.js

+3
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,9 @@ module.exports = {
236236
{
237237
loader: require.resolve('postcss-loader'),
238238
options: {
239+
// Necessary for external CSS imports to work
240+
// https://github.com/facebookincubator/create-react-app/issues/2677
241+
ident: 'postcss',
239242
plugins: () => [
240243
require('postcss-flexbugs-fixes'),
241244
autoprefixer({

packages/react-scripts/fixtures/kitchensink/.template.dependencies.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"chai": "3.5.0",
77
"jsdom": "9.8.3",
88
"mocha": "3.2.0",
9+
"normalize.css": "7.0.0",
910
"prop-types": "15.5.6",
1011
"test-integrity": "1.0.0"
1112
}

packages/react-scripts/fixtures/kitchensink/integration/webpack.test.js

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ describe('Integration', () => {
1717

1818
expect(
1919
doc.getElementsByTagName('style')[0].textContent.replace(/\s/g, '')
20+
).to.match(/html\{/);
21+
expect(
22+
doc.getElementsByTagName('style')[1].textContent.replace(/\s/g, '')
2023
).to.match(/#feature-css-inclusion\{background:.+;color:.+}/);
2124
});
2225

packages/react-scripts/fixtures/kitchensink/src/features/webpack/assets/style.css

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Ensure CSS inclusion doesn't regress
3+
* https://github.com/facebookincubator/create-react-app/issues/2677
4+
*/
5+
@import '~normalize.css/normalize.css';
6+
17
#feature-css-inclusion {
28
background: palevioletred;
39
color: papayawhip;

packages/react-scripts/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-scripts",
3-
"version": "1.0.8",
3+
"version": "1.0.10",
44
"description": "Configuration and scripts for Create React App.",
55
"repository": "facebookincubator/create-react-app",
66
"license": "BSD-3-Clause",
@@ -48,8 +48,8 @@
4848
"postcss-flexbugs-fixes": "3.0.0",
4949
"postcss-loader": "2.0.6",
5050
"promise": "7.1.1",
51-
"react-dev-utils": "^3.0.1",
52-
"react-error-overlay": "^1.0.8",
51+
"react-dev-utils": "^3.0.2",
52+
"react-error-overlay": "^1.0.9",
5353
"style-loader": "0.18.2",
5454
"sw-precache-webpack-plugin": "0.11.3",
5555
"url-loader": "0.5.9",

packages/react-scripts/template/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1503,7 +1503,7 @@ Learn more about React Storybook:
15031503
15041504
### Getting Started with Styleguidist
15051505
1506-
Styleguidist combines of a style guide, where all your components are presented on a single page with their props documentation and usage examples, with an environment for developing components in isolation, similar to Storybook. In Styleguidist you write examples in Markdown, where each code snippet is rendered as a live editable playground.
1506+
Styleguidist combines a style guide, where all your components are presented on a single page with their props documentation and usage examples, with an environment for developing components in isolation, similar to Storybook. In Styleguidist you write examples in Markdown, where each code snippet is rendered as a live editable playground.
15071507
15081508
First, install Styleguidist:
15091509

0 commit comments

Comments
 (0)