From ab8c3a49fa04b890d09ad3821f65e34bc1a89e2a Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Wed, 25 Jan 2023 10:54:07 +0100 Subject: [PATCH] add a resolution for playwright to ensure that all sandboxes use the same version as the docker image --- scripts/utils/yarn.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/utils/yarn.ts b/scripts/utils/yarn.ts index 83a18d51399..08a312a0554 100644 --- a/scripts/utils/yarn.ts +++ b/scripts/utils/yarn.ts @@ -20,7 +20,11 @@ export const addPackageResolutions = async ({ cwd, dryRun }: YarnOptions) => { const packageJsonPath = path.join(cwd, 'package.json'); const packageJson = await readJSON(packageJsonPath); - packageJson.resolutions = { ...storybookVersions, 'enhanced-resolve': '~5.10.0' }; + packageJson.resolutions = { + ...storybookVersions, + 'enhanced-resolve': '~5.10.0', // TODO, remove this + playwright: '1.30.0', // this is for our CI test, ensure we use the same version as docker image + }; await writeJSON(packageJsonPath, packageJson, { spaces: 2 }); };