Skip to content

Commit 33eb9d9

Browse files
committed
Rename 'compile' npm script to 'build'
1 parent 7fefe60 commit 33eb9d9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ To start the unit tests, run `npm run test`. The project will be automatically c
150150
To run the benchmark tests, run `npm run benchmark`. The project will be automatically compiled
151151

152152
### Running the extension
153-
1) To start the extension, first compile the project `npm run compile` (Or `npm run watch` to auto-compile on every file change)
153+
1) To start the extension, first compile the project `npm run build` (Or `npm run watch` to auto-compile on every file change)
154154
2) Open the repository in VSCode
155155
3) Open the 'Run and Debug' tab
156156
4) Select the 'Extension' run configuration on the dropdown on the top

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
"vscode": "^1.59.0"
3535
},
3636
"scripts": {
37-
"vscode:prepublish": "npm run compile",
38-
"compile": "tsc -p ./src",
37+
"vscode:prepublish": "npm run build",
38+
"build": "tsc -p ./src",
3939
"watch": "tsc -watch -p ./src",
4040
"test": "jest --projects jest.config.ts --passWithNoTests",
4141
"benchmark": "jest --projects bench.config.ts",

0 commit comments

Comments
 (0)