Skip to content

Commit 1d30385

Browse files
authored
fix: increase workflowNodeVersion to match minNodeVersion (#5)
* minor README addition * also add cdk-constants and cdk-iam-floyd to base deps * fix node version in workflows
1 parent 6046306 commit 1d30385

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
## Usage
88

9+
### ClickUpCdkTypeScriptApp
10+
911
When creating new cdk apps:
1012

1113
```bash

src/clickup-cdk.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@ export module clickupCdk {
2020
*/
2121
export class ClickUpCdkTypeScriptApp extends awscdk.AwsCdkTypeScriptApp {
2222
constructor(options: ClickUpCdkTypeScriptAppOptions) {
23-
const deps = ['@time-loop/cdk-library', 'colors', 'multi-convention-namer'].concat(...(options.deps ?? []));
23+
const deps = [
24+
'@time-loop/cdk-library',
25+
'cdk-constants',
26+
'cdk-iam-floyd',
27+
'colors',
28+
'multi-convention-namer',
29+
].concat(...(options.deps ?? []));
2430
const devDeps = [
2531
'esbuild',
2632
'eslint-config-prettier',
@@ -52,6 +58,7 @@ export module clickupCdk {
5258
],
5359

5460
minNodeVersion: '14.17.0', // Required by @typescript-eslint/[email protected]
61+
workflowNodeVersion: '14.17.0',
5562

5663
prettier: true,
5764
prettierOptions: {

0 commit comments

Comments
 (0)