Skip to content

Commit

Permalink
feat(dev): Include Node version recommendation (#17)
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Schreckengaust <scottschreckengaust@users.noreply.github.com>
  • Loading branch information
scottschreckengaust authored Oct 6, 2023
1 parent 80ec9a1 commit d45f342
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.18.0
4 changes: 2 additions & 2 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const project = new awscdk.AwsCdkConstructLibrary({

// Keep synchronized with https://github.com/nodejs/release#release-schedule
minNodeVersion: '18.12.0', // 'MAINTENANCE' (first LTS)
maxNodeVersion: '20.7.0', // 'CURRENT'
maxNodeVersion: '20.8.0', // 'CURRENT'
workflowNodeVersion: '18.x', // 'ACTIVE'

npmRegistryUrl: 'https://npm.pkg.github.com',
Expand All @@ -62,7 +62,7 @@ const project = new awscdk.AwsCdkConstructLibrary({
license: 'Apache-2.0',
copyrightPeriod: '2023-',
copyrightOwner: 'Amazon.com, Inc. or its affiliates. All Rights Reserved.',
gitignore: ['*.DS_STORE'],
gitignore: ['*.DS_STORE', '!.node-version'],
stability: 'experimental',
sampleCode: false,
stale: true,
Expand Down
2 changes: 1 addition & 1 deletion package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d45f342

Please sign in to comment.