add installing ncc to build (#302)

* add installing ncc to build

* include npx to get to bin link
This commit is contained in:
David Gamero
2023-11-06 12:44:42 -05:00
committed by GitHub
parent 1fea8281df
commit 93550c22f0
+1 -1
View File
@@ -4,7 +4,7 @@
"author": "Deepak Sattiraju",
"license": "MIT",
"scripts": {
"build": "npx ncc build src/run.ts -o lib",
"build": "npm i ncc && npx ncc build src/run.ts -o lib",
"test": "jest",
"coverage": "jest --coverage=true",
"format": "prettier --write .",