Update scripts/utils/yarn.ts

This commit is contained in:
Norbert de Langen 2023-01-25 11:01:45 +01:00 committed by GitHub
parent ab8c3a49fa
commit d2938f9abc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ export const addPackageResolutions = async ({ cwd, dryRun }: YarnOptions) => {
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
playwright: '1.30.0', // this is for our CI test, ensure we use the same version as docker image, it should match version specified in `./code/package.json` and `.circleci/config.yml`
};
await writeJSON(packageJsonPath, packageJson, { spaces: 2 });
};