Skip to content

Commit

Permalink
try tsc in compile
Browse files Browse the repository at this point in the history
  • Loading branch information
bert0RM committed Dec 13, 2023
1 parent aa8c7a7 commit 2f10430
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
},
"scripts": {
"build": "npx tsc && cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"build-debug": "npx tsc && npm run build --",
"build-release": "npx tsc && npm run build -- --release",
"install": "npx tsc && node-pre-gyp install --fallback-to-build=false || npm run build-release",
"test": "cargo test",
"package": "node-pre-gyp package",
"upload-binary": "npm run package && node-pre-gyp-github publish"
"test": "npx tsc && cargo test",
"package": "npx tsc && node-pre-gyp package",
"upload-binary": "npx tsc && npm run package && node-pre-gyp-github publish"
},
"license": "MIT",
"dependencies": {
Expand Down

0 comments on commit 2f10430

Please sign in to comment.