From fa879ab9abf86b72ceac941a26b5178d3c045d1f Mon Sep 17 00:00:00 2001 From: kevinwatt Date: Mon, 28 Jul 2025 04:46:20 +0800 Subject: [PATCH] fix: update prepare script to skip lib check - Replace shx with standard chmod command - Add --skipLibCheck flag to resolve type dependencies issue - Ensure smooth npm publish process --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2357126..9250cad 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ ], "main": "./lib/index.mjs", "scripts": { - "prepare": "tsc && shx chmod +x ./lib/index.mjs", + "prepare": "tsc --skipLibCheck && chmod +x ./lib/index.mjs", "test": "PYTHONPATH= PYTHONHOME= node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --forceExit" }, "author": "Dewei Yen ",