Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/content/11/en/part11b.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,24 @@ Note that the _name_ of a step is optional, if you define a step as follows

the command that is run is used as the default name.

If you use VS code on windows then you should fix the line endings to the correct format.
```
git config core.autocrlf false
git rm --cached -r .
git reset --hard
```

Windows users should change the eslint scirpt on package.json to the next syntax.
```
"scripts": {
"start": "webpack-dev-server --open --mode development",
"start-prod": "node app.js",
"test": "jest",
"eslint": "eslint \"./**/*.{js,jsx}\"", # highlight-line
"build": "webpack --mode production"
},
```

</div>

<div class="tasks">
Expand Down