Skip to content

Commit 6aa6a9a

Browse files
author
Theo Gravity
committed
feat: require Node 16.20.0
1 parent d875b26 commit 6aa6a9a

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.circleci/config.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ workflows:
1515
condition:
1616
and:
1717
- equal: [ node/macos, << matrix.executor >> ]
18-
- equal: [ '14.16', << matrix.node-version >> ]
18+
- equal: [ '16.20', << matrix.node-version >> ]
1919
steps:
2020
- node/install-rosetta
2121
- when:
@@ -37,8 +37,6 @@ workflows:
3737
- '20.9'
3838
- '18.17'
3939
- '16.20'
40-
# Stay below 14.17.0 or nvm tries to download arm64 artifacts which don't exist
41-
- '14.16'
4240
- cfa/release:
4341
requires:
4442
- test

lib/crawlfs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ async function determineFileType (filename) {
1616

1717
module.exports = async function (dir, options) {
1818
const metadata = {}
19-
let crawled = await glob(dir, options || {})
19+
let crawled = await glob(dir, options ?? {})
2020

2121
// https://github.com/isaacs/node-glob/issues/576
2222
crawled = crawled.sort((a, b) => a.localeCompare(b, 'en'))

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"lib/index.d.ts"
1414
],
1515
"engines": {
16-
"node": ">=10.12.0"
16+
"node": ">=16.20"
1717
},
1818
"license": "MIT",
1919
"homepage": "https://github.com/electron/asar",

0 commit comments

Comments
 (0)