Skip to content

Commit 6853694

Browse files
committed
stuff
1 parent b073e54 commit 6853694

File tree

6 files changed

+8
-16
lines changed

6 files changed

+8
-16
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
(write your answer here)
88

9-
109
<!--
1110
If you answered "Yes":
1211
@@ -63,7 +62,6 @@
6362

6463
(Write your answer here.)
6564

66-
6765
### Which terms did you search for in User Guide?
6866

6967
<!--
@@ -83,7 +81,6 @@
8381

8482
(Write your answer here if relevant.)
8583

86-
8784
### Environment
8885

8986
<!--
@@ -100,7 +97,6 @@
10097

10198
(paste the output of the command here)
10299

103-
104100
### Steps to Reproduce
105101

106102
<!--
@@ -110,10 +106,7 @@
110106

111107
(Write your steps here:)
112108

113-
1.
114-
2.
115-
3.
116-
109+
1. 2. 3.
117110

118111
### Expected Behavior
119112

@@ -125,7 +118,6 @@
125118

126119
(Write what you thought would happen.)
127120

128-
129121
### Actual Behavior
130122

131123
<!--
@@ -136,7 +128,6 @@
136128

137129
(Write what happened. Please add screenshots!)
138130

139-
140131
### Reproducible Demo
141132

142133
<!--
@@ -157,7 +148,6 @@
157148

158149
(Paste the link to an example project and exact instructions to reproduce the issue.)
159150

160-
161151
<!--
162152
What happens if you skip this step?
163153

docusaurus/docs/adding-a-sass-stylesheet.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ This will allow you to do imports like
3737
To use imports relative to a path you specify, and from `node_modules` without adding the `~` prefix, you can add a [`.env` file](https://github.com/facebook/create-react-app/blob/master/docusaurus/docs/adding-custom-environment-variables.md#adding-development-environment-variables-in-env) at the project root with the variable `SASS_PATH=node_modules:src`. To specify more directories you can add them to `SASS_PATH` separated by a `:` like `path1:path2:path3`.
3838

3939
If you set `SASS_PATH=node_modules:src`, this will allow you to do imports like
40+
4041
```scss
4142
@import 'styles/colors'; // assuming a styles directory under src/, where _colors.scss partial file exists.
4243
@import 'nprogress/nprogress'; // importing a css file from the nprogress node module

docusaurus/docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ npm start
1616

1717
_([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))_
1818

19-
Then open [http://localhost:3000/](http://localhost:3000/) to see your app.
19+
Then open [http://localhost:3000/](http://localhost:3000/) to see your app.
2020

2121
When you’re ready to deploy to production, create a minified bundle with `npm run build`.
2222

docusaurus/website/siteConfig.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ const siteConfig = {
1515
// For github.io type URLs, you would set the url and baseUrl like:
1616
url: 'https://facebook.github.io',
1717
baseUrl: '/create-react-app/',
18-
editUrl: 'https://github.com/facebook/create-react-app/edit/master/docusaurus/docs/',
18+
editUrl:
19+
'https://github.com/facebook/create-react-app/edit/master/docusaurus/docs/',
1920

2021
// Used for publishing and more
2122
projectName: 'create-react-app',
@@ -86,7 +87,7 @@ const siteConfig = {
8687
algolia: {
8788
apiKey: '3be60f4f8ffc24c75da84857d6323791',
8889
indexName: 'create-react-app',
89-
}
90+
},
9091
};
9192

9293
module.exports = siteConfig;

packages/react-app-polyfill/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Each polyfill ensures the following language features are present:
1313
1. `Symbol` (a built-in object used by `for...of` syntax and friends)
1414
1. `Array.from` (a built-in static method used by array spread, i.e. `[...arr]`)
1515

16-
*If you need more features, you must include them manually.*
16+
_If you need more features, you must include them manually._
1717

1818
### Usage
1919

packages/react-scripts/scripts/utils/createJestConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ module.exports = (resolve, rootDir, isEjecting) => {
7979
'resetModules',
8080
'snapshotSerializers',
8181
'watchPathIgnorePatterns',
82-
'transformIgnorePatterns'
82+
'transformIgnorePatterns',
8383
];
8484
if (overrides) {
8585
supportedKeys.forEach(key => {

0 commit comments

Comments
 (0)