Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Drop support for Node v10
It is no longer a supported LTS release! Finally.
  • Loading branch information
Gerrit0 committed May 1, 2021
1 parent 22df574 commit dc8416a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
10 changes: 1 addition & 9 deletions .eslintrc
Expand Up @@ -47,15 +47,7 @@

// Feel free to turn one of these back on and submit a PR!
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,

"no-restricted-syntax": [
"error",
{
"selector": "ImportDeclaration[source.value=/^node:/]",
"message": "This will break on Node 10"
}
]
"@typescript-eslint/explicit-module-boundary-types": 0
},
"overrides": [
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["10", "12", "14"]
node: ["12", "14", "16"]
name: Node ${{ matrix.node }}
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -17,7 +17,7 @@
"url": "https://github.com/TypeStrong/TypeDoc/issues"
},
"engines": {
"node": ">= 10.8.0"
"node": ">= 12.20.0"
},
"dependencies": {
"handlebars": "^4.7.7",
Expand Down

0 comments on commit dc8416a

Please sign in to comment.