Skip to content

Commit

Permalink
fix: try to fix executable error
Browse files Browse the repository at this point in the history
  • Loading branch information
okineadev committed Dec 3, 2024
1 parent d417034 commit c64a1b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.2",
"module": "index.ts",
"bin": {
"okineadev": "./dist/cli.js"
"okineadev": "dist/cli.js"
},
"type": "module",
"repository": {
Expand All @@ -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": {
Expand Down

0 comments on commit c64a1b0

Please sign in to comment.