From c42dc452247b7dad4a7116897737551607d7fd2a Mon Sep 17 00:00:00 2001 From: Christopher Henn Date: Thu, 6 Feb 2020 10:18:55 -0800 Subject: [PATCH] Fix prepublish install loop --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 56cb82e7..442b9cf5 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "build": "yarn clean && yarn rollup -c", "clean": "rimraf dist", "ci": "yarn lint && yarn test && yarn test:versions && yarn test:types && yarn typecheck && yarn build", - "prepublish": "yarn install --frozen-lockfile && yarn ci", + "prepublish": "yarn ci", "prettier": "prettier './**/*.{js,ts,md,html,css}' --write", "prettier-list-different": "prettier './**/*.{js,ts,md,html,css}' --list-different" },