From 8683ed71661cf9abd3cd29a0130b4eca41c139a9 Mon Sep 17 00:00:00 2001 From: Atul R Date: Sun, 28 Jul 2019 10:14:20 +0200 Subject: [PATCH] Dont run build lib on install. Only build addon --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 45c95036b..5a8cdd343 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ }, "scripts": { "dev": "npm run build && qode dist/demo.js", - "install": "npm run build:lib && npm run rebuild:addon", + "install": "npm run rebuild:addon", "build": "npm run build:lib && npm run build:addon", "build:lib": "tsc", "build:addon": "node-gyp -j 8 build",