From 93550c22f0e0656c2a6b0cf5252a94cc3e2710fc Mon Sep 17 00:00:00 2001 From: David Gamero Date: Mon, 6 Nov 2023 12:44:42 -0500 Subject: [PATCH] add installing ncc to build (#302) * add installing ncc to build * include npx to get to bin link --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b18ba9343..1e6e6ab11 100644 --- a/package.json +++ b/package.json @@ -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 .",