Skip to content

Commit

Permalink
update build script to include ncc install (#99)
Browse files Browse the repository at this point in the history
gh actions won't respect npx installed devdeps
  • Loading branch information
davidgamero authored Feb 7, 2024
1 parent d1dc92d commit 688936d
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 @@ -4,7 +4,7 @@
"private": true,
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/run.ts -o lib",
"build": "npm i ncc && npx ncc build src/run.ts -o lib",
"test": "jest",
"test-coverage": "jest --coverage",
"format": "prettier --write .",
Expand Down

0 comments on commit 688936d

Please sign in to comment.