add a resolution for playwright to ensure that all sandboxes use the same version as the docker image

This commit is contained in:
Norbert de Langen 2023-01-25 10:54:07 +01:00
parent 5ebd0c2a58
commit ab8c3a49fa
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -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 });
};