We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e1012a commit 0538f60Copy full SHA for 0538f60
2 files changed
package.json
@@ -13,7 +13,7 @@
13
"copy-bindings": "cp -r ./packages/cli/binding/*.node ./packages/cli/dist && cp -r ./packages/cli/binding/*.node ./packages/global/dist",
14
"install-global-cli": "npm install -g ./packages/global",
15
"typecheck": "tsc -b tsconfig.json",
16
- "lint": "vite lint && vite run typecheck",
+ "lint": "vite lint || echo lint failed && vite run typecheck",
17
"test": "vite test run && pnpm -r snap-test",
18
"prepare": "husky"
19
},
packages/cli/binding/src/lib.rs
@@ -220,7 +220,8 @@ pub async fn run(options: CliOptions) {
220
}
221
222
};
223
- std::process::exit(exit_code);
+ dbg!(exit_code);
224
+ std::process::abort()
225
226
227
/// Convert JavaScript errors to Rust lint errors
0 commit comments