Skip to content

Commit

Permalink
chore(cfnspec): new libraries do not conform to pkglint (aws#20900)
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 aws#20856.

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
rix0rrr authored and daschaa committed Jul 9, 2022
1 parent fe0472d commit 2901251
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 2901251

Please sign in to comment.