Skip to content

Commit

Permalink
chore: fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyg603 committed Mar 20, 2024
1 parent a1f2c07 commit 5972e34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
"scripts": {
"start": "ts-node ./bin/index.ts RUST_BACKTRACE=1 ./spec/test_data/linux/my-ubuntu-crasher ./out/my-ubuntu-crasher.sym",
"prestart": "npm run build:debug && npm run pretest",
"prebuild": "mkdirp dist && mkdirp native",
"prebuild": "npm run clean",
"build": "npm run build:tsc && npm run build:rust-release",
"build:client": "npm run build && npm run copy:rust",
"build:debug": "npm run build:tsc && npm run build:rust-debug",
"build:rust": "npx cargo-cp-artifact -nc native/index.node -- cargo build --message-format=json-render-diagnostics",
"build:rust-debug": "npm run build:rust --",
"build:rust-release": "npm run build:rust -- --release",
"build:tsc": "npx tsc",
"clean": "rimraf dist && rimraf native && mkdirp dist && mkdirp native",
"copy:rust": "npx copyfiles native/index.node dist",
"pretest": "rimraf out && mkdirp out",
"test": "npm run test:rust && npm run test:tsc",
Expand Down

0 comments on commit 5972e34

Please sign in to comment.