Skip to content

Commit

Permalink
Merge pull request #1466 from hashicorp/update-engines-node-12
Browse files Browse the repository at this point in the history
fix: update specified nodejs version to >=12.16 to reflect our actual requirements
  • Loading branch information
DanielMSchmidt authored Jan 7, 2022
2 parents c98cb8b + ca3bcf8 commit 78bac36
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/typescript/azure-app-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"@cdktf/provider-azurerm": "^0.2.9",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/azure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/backends/azurerm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/backends/gcs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/backends/remote/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/backends/s3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/google-cloudrun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/google/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/kubernetes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/ucloud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/vault/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@cdktf/hcl2cdk/test/convertProject.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ app.synth();`,
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
},
"dependencies": {
"cdktf": "next",
Expand Down
2 changes: 1 addition & 1 deletion packages/cdktf-cli/templates/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=10.12"
"node": ">=12.16"
}
}

0 comments on commit 78bac36

Please sign in to comment.