From a1b1d594aab8bc902f668d2c4da6e27e6ddda058 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Mon, 12 Feb 2024 12:50:55 -0500 Subject: [PATCH 1/2] backport 1868 --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 76d18e575..a4a355ac1 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,8 @@ "build": "node scripts/build.js", "docs:build": "cd docs && npm run build -- --silent", "verify": "npm run prettier:check && npm run lint && npm run build && npm run test", - "postinstall": "npx playwright install && ./scripts/clear-vercel-patches.sh && npm i --ignore-scripts && npx patch-package", + "postinstall": "./scripts/clear-vercel-patches.sh && npm i --ignore-scripts && npx patch-package", + "prepare": "npx playwright install", "prepublishOnly": "npm run verify", "prettier": "prettier --write --log-level warn .", "prettier:check": "prettier --check --log-level warn .", From 4718c3d815dcaac7629054a5ddaaeb5241fb7c1e Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 6 Mar 2024 07:56:24 -0500 Subject: [PATCH 2/2] move to prepare --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index a4a355ac1..ccef619d1 100644 --- a/package.json +++ b/package.json @@ -47,8 +47,7 @@ "build": "node scripts/build.js", "docs:build": "cd docs && npm run build -- --silent", "verify": "npm run prettier:check && npm run lint && npm run build && npm run test", - "postinstall": "./scripts/clear-vercel-patches.sh && npm i --ignore-scripts && npx patch-package", - "prepare": "npx playwright install", + "prepare": "./scripts/clear-vercel-patches.sh && npm i --ignore-scripts && npx patch-package && npx playwright install", "prepublishOnly": "npm run verify", "prettier": "prettier --write --log-level warn .", "prettier:check": "prettier --check --log-level warn .",