Skip to content

Commit

Permalink
feat(deps): require Node.js 14.14.0 as a minimum (#1259)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed May 10, 2022
1 parent f8e38fb commit 1ff217d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
".husky/pre-commit"
],
"engines": {
"node": "^14.13.1 || >=16.0.0"
"node": "^14.14.0 || >=16.0.0"
},
"dependencies": {
"@commitlint/cli": "^16.2.4",
Expand Down
4 changes: 2 additions & 2 deletions test/init.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { copyFileSync, existsSync, mkdirSync, readFileSync, rmdirSync, writeFileSync } from "fs";
import { copyFileSync, existsSync, mkdirSync, readFileSync, rmSync, writeFileSync } from "fs";
import { tmpdir } from "os";
import { join, resolve } from "path";
import { init } from "../lib/init.js";
Expand Down Expand Up @@ -32,7 +32,7 @@ const sandbox = async (callback) => {
initArgs: { cwd: workDir, logger },
});
} finally {
rmdirSync(workDir, { recursive: true });
rmSync(workDir, { recursive: true });
}
};

Expand Down

0 comments on commit 1ff217d

Please sign in to comment.