-
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(And, start testing Node v16 instead of Node v15 on CI.) Notable: * In Node v12+, Array.prototype.sort() is stable, so we no longer need lodash/sortby. * In Node v12 and v14, fs.rmdirSync()'s recursive option works, so we no longer need the clear-dir.js utility. However, it stopped working in v16; there you need to use the new-in-v14 fs.rmSync(). So we have to use (fs.rmSync || fs.rmdirSync). * In Node v12+, TextEncoder and TextDecoder are globals.
- Loading branch information
Showing
8 changed files
with
20 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,9 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
node-version: | ||
- 10 | ||
- 12 | ||
- 14 | ||
- 15 | ||
- 16 | ||
architecture: | ||
- x64 | ||
steps: | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters