Skip to content

Commit aa8f8e5

Browse files
authoredMar 22, 2023
fix: engine specifies a higher version than it needs (#1615)
The engine bump was introduced [here](#1611), when in fact only a build time node version needed a bump.
1 parent b01871f commit aa8f8e5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎.projenrc.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ const project = new cdk.JsiiProject({
5454
},
5555

5656
stability: 'stable',
57-
minNodeVersion: '14.18.0',
57+
minNodeVersion: '14.17.0',
58+
workflowNodeVersion: '14.18.0',
5859

5960
compat: true,
6061

‎package.json

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

0 commit comments

Comments
 (0)
Please sign in to comment.