Skip to content

Commit

Permalink
chore(cfnspec): new libraries do not conform to pkglint
Browse files Browse the repository at this point in the history
When we updated the minimum Node version, we did not update it
in the template that is used to stamp out new construct libraries
when new CFN namespaces are added to the spec.

Meaning every cfnspec update now fails because the new packages
fail `pkglint` validation.

Update the Node version in the template.

Closes #20856.
  • Loading branch information
rix0rrr committed Jun 28, 2022
1 parent b1e6d62 commit b71196c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ async function main() {
'@aws-cdk/core': version,
},
engines: {
node: '>= 10.13.0 <13 || >=13.7.0',
node: '>= 14.15.0',
},
stability: 'experimental',
maturity: 'cfn-only',
Expand Down

0 comments on commit b71196c

Please sign in to comment.