Skip to content

Commit

Permalink
feat: Support Node v12.10 (#1632)
Browse files Browse the repository at this point in the history
Lower than 12.10 would require refactoring src/lib/utils/fs.ts to use something other than fs.rmdir({ recursive: true }), which was introduced in 12.10 https://nodejs.org/docs/latest-v12.x/api/fs.html#fs_fs_rmdir_path_options_callback

 Closes #1628
  • Loading branch information
betaorbust committed Jul 16, 2021
1 parent 8ff7d32 commit 8f6992a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["12", "14", "16"]
node: ["12.10", "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": ">= 12.20.0"
"node": ">= 12.10.0"
},
"dependencies": {
"glob": "^7.1.7",
Expand Down

0 comments on commit 8f6992a

Please sign in to comment.