Skip to content

Commit 4e52091

Browse files
authored
chore(cfnspec): new libraries do not conform to pkglint (#20900)
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. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent b8557f0 commit 4e52091

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@aws-cdk/cfnspec/build-tools/create-missing-libraries.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ async function main() {
183183
'@aws-cdk/core': version,
184184
},
185185
engines: {
186-
node: '>= 10.13.0 <13 || >=13.7.0',
186+
node: '>= 14.15.0',
187187
},
188188
stability: 'experimental',
189189
maturity: 'cfn-only',

0 commit comments

Comments
 (0)