From dfbe38782ca98876d6b753be9a74b14c6d06253e Mon Sep 17 00:00:00 2001 From: matt Date: Fri, 13 Feb 2026 00:40:15 +0900 Subject: [PATCH] feat(package): add npmRebuild option to package.json - Introduced the "npmRebuild" option in package.json, set to false, to control the rebuilding of native modules during installation. This commit enhances the package configuration by providing more control over the build process for native dependencies. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index b0509323..48bbe11f 100644 --- a/package.json +++ b/package.json @@ -124,6 +124,7 @@ "package.json" ], "asar": true, + "npmRebuild": false, "extraMetadata": { "main": "dist-electron/main/index.cjs" },