From cd227943e242eadadd82a77c3c25b3f4816e5aad Mon Sep 17 00:00:00 2001 From: SoraSuegami Date: Sun, 24 Mar 2024 01:57:41 +0900 Subject: [PATCH] Fix package.json. --- packages/apis/package.json | 4 ++-- packages/compiler/package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/apis/package.json b/packages/apis/package.json index 637764e..4fd5e31 100644 --- a/packages/apis/package.json +++ b/packages/apis/package.json @@ -17,8 +17,8 @@ "build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics", "build-debug": "npm run build --", "build-release": "npm run build -- --release", - "install": "npm run build-debug", - "install-release": "node-pre-gyp install --update-binary --fallback-to-build=false || npm run build-release", + "install-debug": "npm run build-debug", + "install": "node-pre-gyp install --update-binary --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" diff --git a/packages/compiler/package.json b/packages/compiler/package.json index d5c442b..1b909c9 100644 --- a/packages/compiler/package.json +++ b/packages/compiler/package.json @@ -17,8 +17,8 @@ "build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics", "build-debug": "npm run build --", "build-release": "npm run build -- --release", - "install": "npm run build-debug", - "install-release": "node-pre-gyp install --update-binary --fallback-to-build=false || npm run build-release", + "install-debug": "npm run build-debug", + "install": "node-pre-gyp install --update-binary --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"