Skip to content

Commit

Permalink
fix(build): ensure lib/index.js is executable after build
Browse files Browse the repository at this point in the history
  • Loading branch information
checkbox-mok committed Aug 17, 2024
1 parent 06a71d0 commit 607f16e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"clean": "rimraf lib",
"prebuild": "npm run qc && npm run clean",
"build": "tsc",
"postbuild": "cp README.md lib",
"postbuild": "cp README.md lib && chmod +x ./lib/index.js",
"publish:live": "npm run build && npm publish lib --tag latest",
"publish:next": "npm run build && npm publish lib --tag next"
},
Expand Down

0 comments on commit 607f16e

Please sign in to comment.