Skip to content

Commit

Permalink
feat: drop Node 10 support (#897)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node 12+ required now
  • Loading branch information
ybiquitous authored Mar 10, 2021
1 parent c6f9ff6 commit 66ceeaa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["10", "12", "14"]
node-version: ["12", "14"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10
12
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"repository": "ybiquitous/eslint-config-ybiquitous",
"engines": {
"node": "^10.12.0 || >=12.0.0"
"node": ">=12.10.0"
},
"dependencies": {
"eslint-config-prettier": "^8.1.0",
Expand Down
2 changes: 1 addition & 1 deletion test/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const sandbox = (callback) => {
throw err;
} finally {
process.chdir(BASE_DIR);
$("rm", "-rf", TMP_DIR);
fs.rmdirSync(TMP_DIR, { recursive: true });
}
};

Expand Down

0 comments on commit 66ceeaa

Please sign in to comment.