Skip to content

Commit e9bf09c

Browse files
authored
fix: unnecessary strict node requirement in engines in package.json (#2498)
Fixes #1329 We already use jsii to manage Node.js versions. No need to overzealously enforce via engines.
1 parent 912158f commit e9bf09c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.projenrc.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ const project = new CdklabsJsiiProject({
5151
},
5252

5353
stability: 'stable',
54-
minNodeVersion: '18.12.0',
55-
54+
setNodeEngineVersion: false,
5655
compat: true,
5756

5857
autoApproveOptions: {

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ Constructs are classes which define a "piece of system state". Constructs can be
1414

1515
Constructs are often used to represent the _desired state_ of cloud applications. For example, in the AWS CDK, which is used to define the desired state for AWS infrastructure using CloudFormation, the lowest-level construct represents a _resource definition_ in a CloudFormation template. These resources are composed to represent higher-level logical units of a cloud application, etc.
1616

17+
## Support policy
18+
19+
All [maintained Node.js versions](https://nodejs.org/en/about/previous-releases#release-schedule) are supported by this package.
20+
1721
## Contributing
1822

1923
This project has adopted the [Amazon Open Source Code of

package.json

-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)