Skip to content

Commit

Permalink
Fix faulty Node engine version in package.json (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
greenlynx authored Mar 6, 2025
1 parent 5a2e542 commit d5c116b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ const commonTscOptions: TypeScriptCompilerOptions = {
// esModuleInterop: true, // why doesn't this work?
};

const minNodeVersion = '18.18.0';

const project = new awscdk.AwsCdkConstructLibrary({
// repository config
author: 'JetBridge',
Expand All @@ -35,7 +37,8 @@ const project = new awscdk.AwsCdkConstructLibrary({
packageName: 'cdk-nextjs-standalone',
majorVersion: 4,
// prerelease: 'beta',
minNodeVersion: '>=18.18.0',
minNodeVersion,
workflowNodeVersion: `>=${minNodeVersion}`,
description: 'Deploy a NextJS app to AWS using CDK and OpenNext.',
keywords: [
'nextjs',
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 d5c116b

Please sign in to comment.