From ea03ede67a6d4fbf8e5e68dc7aa9ad1a92329273 Mon Sep 17 00:00:00 2001 From: Ran Yitzhaki Date: Wed, 22 May 2019 17:13:45 +0300 Subject: [PATCH 1/2] fix(install): do not build during postinstall --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 18b65c846..5f0e9c307 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,6 @@ "eslint": ">=5" }, "scripts": { - "postinstall": "yarn build", "lint": "eslint . --ignore-pattern '!.eslintrc.js' --ext js,ts", "prettylint": "prettylint docs/**/*.md README.md package.json", "prepublishOnly": "yarn build", From 9f40d2cf0ceef7d127af0c4160c58e022dcd63c6 Mon Sep 17 00:00:00 2001 From: Ran Yitzhaki Date: Wed, 22 May 2019 17:26:46 +0300 Subject: [PATCH 2/2] fix(install): build before running tests --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 5f0e9c307..6e393c936 100644 --- a/package.json +++ b/package.json @@ -27,6 +27,7 @@ "eslint": ">=5" }, "scripts": { + "pretest": "yarn build", "lint": "eslint . --ignore-pattern '!.eslintrc.js' --ext js,ts", "prettylint": "prettylint docs/**/*.md README.md package.json", "prepublishOnly": "yarn build",