Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions docs/contribute/create_sample.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ Create a folder in `samples` and add a `package.json` and a `tsconfig.json`:
}
},
"scripts": {
"build": "tsc",
"watch": "tsc -w"
"build": "tsc -b",
"watch": "tsc -b -w",
"clean": "tsc -b --clean"
},
"license": "MIT",
"dependencies": {
Expand Down
5 changes: 3 additions & 2 deletions docs/contribute/create_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ Put the following into it:
"url": "<Your github profile url>"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w"
"build": "tsc -b",
"watch": "tsc -b -w",
"clean": "tsc -b --clean"
},
"keywords": ["", "nodecg-bundle"],
"nodecg": {
Expand Down