Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: remove node v12 and node v15 support #12658

Merged
merged 8 commits into from
Dec 9, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@
},
"homepage": "https://renovatebot.com",
"engines": {
"node": "^12.22.0 || >=14.15.0",
"node": "^14.15.0 || >=16.13.0",
rarkins marked this conversation as resolved.
Show resolved Hide resolved
"yarn": "^1.17.0"
},
"engines-next": {
"description": "Versions other than the below are deprecated and a warning will be logged",
"node": ">=14.15.0"
"node": "^14.15.0 || >=16.13.0"
rarkins marked this conversation as resolved.
Show resolved Hide resolved
},
"dependencies": {
viceice marked this conversation as resolved.
Show resolved Hide resolved
"@aws-sdk/client-ec2": "3.35.0",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"noImplicitAny": false /* required for js files */,
"strictNullChecks": false /* required for js files */,
"outDir": "./dist",
"target": "es2018",
/* https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping */
"target": "es2020",
"module": "commonjs",
"sourceMap": true,
"allowSyntheticDefaultImports": true,
Expand All @@ -14,7 +15,7 @@
"noImplicitOverride": true,
"experimentalDecorators": true,
"useUnknownInCatchVariables": false /* we aren't prepared for enabling this by default since ts 4.4*/,
"lib": ["es2018"],
"lib": ["es2020"],
"types": ["node", "jest", "jest-extended", "expect-more-jest"],
"allowJs": true,
"checkJs": true
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.strict.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"strictNullChecks": true,
"noImplicitAny": true,
"lib": ["es2019"]
"lib": ["es2020"]
},
"include": [
"lib/config/app-strings.ts",
Expand Down