You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(amplify-integtest): override any peer dependencies on cdk lib (#58)
`@aws-amplify/backend` has a peer dep on `aws-cdk-lib`:
```
"peerDependencies": {
"aws-cdk-lib": "^2.168.0",
}
```
This prevents testing using RC versions of `aws-cdk-lib`.
Adding `overrides` into the `package.json` to override any peer
dependency requirements on `aws-cdk-lib`.
`npm config set save-exact true` is also needed so that when
`create-amplify` runs `npm install`, it does not attempts to use
`^<version>` in `package.json`, which will conflicts with the
`overrides` mentioned above.
---------
Signed-off-by: github-actions <[email protected]>
Co-authored-by: github-actions <[email protected]>
0 commit comments