Skip to content

Commit 661efe6

Browse files
committed
Fix test scripts
1 parent 48c4838 commit 661efe6

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"theme": "dark"
1111
},
1212
"license": "MIT",
13-
"version": "0.0.40",
13+
"version": "0.0.41",
1414
"repository": {
1515
"type": "git",
1616
"url": "https://github.com/imandra-ai/imandrax-vscode"
@@ -189,17 +189,18 @@
189189
"scripts": {
190190
"check-types": "npx tsc --noEmit",
191191
"compile": "npm run check-types && npm run lint && esbuild",
192-
"build": "npx tsc -b",
193-
"build-clean": "rm -rf src/out imlformat/out && npx tsc -b",
192+
"build": "npx tsc -b --verbose",
193+
"clean": "rm -rf out src/out imlformat/out src/tsconfig.tsbuildinfo",
194+
"build-clean": "npm run clean && npm run build",
194195
"build-watch": "npx tsc -b -w",
195196
"lint": "eslint ./src --ext .ts,.tsx",
196197
"vscode:prepublish": "npm run esbuild-base -- --minify",
197198
"esbuild": "npm run esbuild-base -- --sourcemap",
198199
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node --external:'prettier'",
199-
"esbuild-clean": "rm -rf out/ imlformat/out && npm run esbuild",
200+
"esbuild-clean": "npm run clean && npm run esbuild",
200201
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
201202
"test": "vscode-test",
202-
"test-clean": "npm run build-clean && npm run esbuild-clean && vscode-test"
203+
"test-clean": "npm run clean && npm run build && npm run esbuild && vscode-test"
203204
},
204205
"dependencies": {
205206
"@vscode/vsce": "^3.5.0",

0 commit comments

Comments
 (0)