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
4 changes: 2 additions & 2 deletions workshop/part3-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ In the package.json add a new line to the script that runs **npx** and **parcel*
"main": "index.js", // remove this line
"scripts": {
"test": "jest", // add the comma
"start": "parcel index.js", // add this line
"build": "parcel build index.js" // add this line
"start": "npx parcel index.js", // add this line
"build": "npx parcel build index.js" // add this line
},
```

Expand Down