Skip to content

Commit

Permalink
fix: use devDependency for lib info
Browse files Browse the repository at this point in the history
Co-authored-by: Akash Askoolum <[email protected]>
  • Loading branch information
mxdvl and akash1810 committed Jan 18, 2024
1 parent a08c35c commit ee87cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/constants/library-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ export const LibraryInfo = {
* The version of the `aws-cdk-lib` library used by `@guardian/cdk`.
* You need to match this version exactly.
*/
AWS_CDK_VERSION: valueOrUnknown(getDependency("aws-cdk-lib")),
AWS_CDK_VERSION: valueOrUnknown(getDevDependency("aws-cdk-lib")),

/**
* The version of the `constructs` library used by `@guardian/cdk`.
* You need to match this version exactly.
*/
CONSTRUCTS_VERSION: valueOrUnknown(getDependency("constructs")),
CONSTRUCTS_VERSION: valueOrUnknown(getDevDependency("constructs")),
};

0 comments on commit ee87cff

Please sign in to comment.