File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ OS / architecture / packaging specifiers used in the listings include:
40
40
* ** linux-s390x** : normally .tar.gz and .tar.xz
41
41
* ** linux-x64** : normally .tar.gz and .tar.xz
42
42
* ** linux-x86** : normally .tar.gz and .tar.xz
43
+ * ** osx-arm64-tar** : normally .tar.gz and .tar.xz
43
44
* ** osx-x64-pkg** : OSX .pkg installer (64-bit only since io.js v1)
44
45
* ** osx-x64-tar** : normally .tar.gz and .tar.xz
45
46
* ** src** : normally .tar.gz and .tar.xz, full source used to build the distribution
Original file line number Diff line number Diff line change 1
1
const assert = require ( 'assert' )
2
2
const types = {
3
3
'aix-ppc64' : 'aix-ppc64' ,
4
+ 'darwin-arm64' : 'osx-arm64-tar' ,
4
5
'darwin-x64' : 'osx-x64-tar' ,
5
6
'darwin-x86' : 'osx-x86-tar' ,
6
7
headers : 'headers' ,
@@ -145,6 +146,8 @@ if (module === require.main) {
145
146
{ file : 'node-v9.0.0-test20170609cd40078f1f-darwin-x64.tar.xz' } ,
146
147
{ file : 'node-v9.0.0-test20170609cd40078f1f-headers.tar.gz' , type : 'headers' } ,
147
148
{ file : 'node-v9.0.0-test20170609cd40078f1f-headers.tar.xz' } ,
149
+ { file : 'node-v16.0.0-rc.4-darwin-arm64.tar.gz' , type : 'osx-arm64-tar' } ,
150
+ { file : 'node-v16.0.0-rc.4-darwin-arm64.tar.xz' } ,
148
151
{ file : 'win-arm/node.exe' , type : 'win-arm-exe' } ,
149
152
{ file : 'node-v8.1.4-win-arm.7z' , type : 'win-arm-7z' } ,
150
153
{ file : 'node-v8.1.4-win-arm.zip' , type : 'win-arm-zip' } ,
You can’t perform that action at this time.
0 commit comments