Skip to content

Commit 9a8fc4d

Browse files
committed
Revert Prettied files
1 parent 91c76ad commit 9a8fc4d

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

.github/ISSUE_TEMPLATE.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
(write your answer here)
88

9+
910
<!--
1011
If you answered "Yes":
1112
@@ -62,6 +63,7 @@
6263

6364
(Write your answer here.)
6465

66+
6567
### Which terms did you search for in User Guide?
6668

6769
<!--
@@ -81,6 +83,7 @@
8183

8284
(Write your answer here if relevant.)
8385

86+
8487
### Environment
8588

8689
<!--
@@ -97,6 +100,7 @@
97100

98101
(paste the output of the command here)
99102

103+
100104
### Steps to Reproduce
101105

102106
<!--
@@ -106,9 +110,10 @@
106110

107111
(Write your steps here:)
108112

109-
1.
110-
2.
111-
3.
113+
1.
114+
2.
115+
3.
116+
112117

113118
### Expected Behavior
114119

@@ -120,6 +125,7 @@
120125

121126
(Write what you thought would happen.)
122127

128+
123129
### Actual Behavior
124130

125131
<!--
@@ -130,6 +136,7 @@
130136

131137
(Write what happened. Please add screenshots!)
132138

139+
133140
### Reproducible Demo
134141

135142
<!--
@@ -150,6 +157,7 @@
150157

151158
(Paste the link to an example project and exact instructions to reproduce the issue.)
152159

160+
153161
<!--
154162
What happens if you skip this step?
155163

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

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ 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-
4140
```scss
4241
@import 'styles/colors'; // assuming a styles directory under src/, where _colors.scss partial file exists.
4342
@import 'nprogress/nprogress'; // importing a css file from the nprogress node module

docusaurus/docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ npm start
1818
1919
_([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))_
2020

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

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

docusaurus/docs/updating-to-new-releases.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ Create React App is divided into two packages:
88
- `create-react-app` is a global command-line utility that you use to create new projects.
99
- `react-scripts` is a development dependency in the generated projects (including this one).
1010

11-
When you run `npx create-react-app my-app` it automatically installs the latest version of Create React App.
12-
13-
> If you've previously installed `create-react-app` globally via `npm install -g create-react-app`, please visit [Getting Started](getting-started.md) to learn about current installation steps.
11+
When you run `npx create-react-app my-app` it automatically installs the latest version of Create React App.
12+
> If you've previously installed `create-react-app` globally via `npm install -g create-react-app`, please visit [Getting Started](getting-started.md) to learn about current installation steps.
1413
1514
Create React App creates the project with the latest version of `react-scripts` so you’ll get all the new features and improvements in newly created apps automatically.
1615

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ function writeJson(fileName, object) {
2222
}
2323

2424
function verifyNoTypeScript() {
25-
const typescriptFiles = globby(['**/*.(ts|tsx)', '!**/node_modules'], {
26-
cwd: paths.appSrc,
27-
});
25+
const typescriptFiles = globby(['**/*.(ts|tsx)', '!**/node_modules'], { cwd: paths.appSrc });
2826
if (typescriptFiles.length > 0) {
2927
console.warn(
3028
chalk.yellow(

0 commit comments

Comments
 (0)