Skip to content

Commit

Permalink
Rename 'compile' npm script to 'build'
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanH-AT committed Dec 5, 2023
1 parent 7fefe60 commit 33eb9d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ To start the unit tests, run `npm run test`. The project will be automatically c
To run the benchmark tests, run `npm run benchmark`. The project will be automatically compiled

### Running the extension
1) To start the extension, first compile the project `npm run compile` (Or `npm run watch` to auto-compile on every file change)
1) To start the extension, first compile the project `npm run build` (Or `npm run watch` to auto-compile on every file change)
2) Open the repository in VSCode
3) Open the 'Run and Debug' tab
4) Select the 'Extension' run configuration on the dropdown on the top
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"vscode": "^1.59.0"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./src",
"vscode:prepublish": "npm run build",
"build": "tsc -p ./src",
"watch": "tsc -watch -p ./src",
"test": "jest --projects jest.config.ts --passWithNoTests",
"benchmark": "jest --projects bench.config.ts",
Expand Down

0 comments on commit 33eb9d9

Please sign in to comment.