From a34c5f13562bfe9f1f42275c15e91d25054cf064 Mon Sep 17 00:00:00 2001 From: Atul R Date: Sat, 10 Aug 2019 22:30:24 +0200 Subject: [PATCH] fix for npm install broken on starter --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d4a759e9c..e4f7a3481 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,8 @@ "private": false, "scripts": { "dev": "npm run build && qode dist/demo.js", - "install": "npm run build:addon", + "install": "npm -v", + "postinstall": "npm run build:addon", "build": "npm run build:lib && npm run build:addon", "build:lib": "tsc", "build:addon": "node-gyp -j 8 configure build",