From c64a1b04b772c120db8361f760f3f04cdca2069f Mon Sep 17 00:00:00 2001 From: Okinea Dev Date: Tue, 3 Dec 2024 21:57:57 +0200 Subject: [PATCH] fix: try to fix executable error --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b70c015..d64dba8 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.0.2", "module": "index.ts", "bin": { - "okineadev": "./dist/cli.js" + "okineadev": "dist/cli.js" }, "type": "module", "repository": { @@ -19,7 +19,7 @@ "lint": "biome check --fix", "format": "biome format --write .", "preversion": "bun run format && git add .", - "build": "bun build ./index.ts --outfile ./dist/cli.js --target node", + "build": "bun build ./index.ts --outfile ./dist/cli.js --target node && chmod +x ./dist/cli.js", "prepublishOnly": "bun run build" }, "peerDependencies": {