nodejs-dist-indexer 1.7.25 → 1.7.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.7.26](https://github.com/nodejs/nodejs-dist-indexer/compare/v1.7.25...v1.7.26) (2025-12-01)
2
+
3
+ ### Trivial Changes
4
+
5
+ * add linux-arm64-musl ([#63](https://github.com/nodejs/nodejs-dist-indexer/issues/63)) ([10513fe](https://github.com/nodejs/nodejs-dist-indexer/commit/10513fe1fe161b385d9c0d55c0e73359610f4882))
6
+
1
7
  ## [1.7.25](https://github.com/nodejs/nodejs-dist-indexer/compare/v1.7.24...v1.7.25) (2025-11-25)
2
8
 
3
9
  ### Trivial Changes
package/README.md CHANGED
@@ -44,6 +44,7 @@ OS / architecture / packaging specifiers used in the listings include:
44
44
  * **linux-x64-debug**: normally .tar.gz and .tar.xz
45
45
  * **linux-x64-glibc-217**: normally .tar.gz and .tar.xz
46
46
  * **linux-x86**: normally .tar.gz and .tar.xz
47
+ * **linux-arm64-musl**: normally .tar.gz and .tar.xz
47
48
  * **osx-arm64-tar**: normally .tar.gz and .tar.xz
48
49
  * **osx-x64-pkg**: OSX .pkg installer (64-bit only since io.js v1)
49
50
  * **osx-x64-tar**: normally .tar.gz and .tar.xz
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodejs-dist-indexer",
3
- "version": "1.7.25",
3
+ "version": "1.7.26",
4
4
  "description": "An application to create nodejs.org distribution index files: index.json and index.tab",
5
5
  "main": "src/dist-indexer.js",
6
6
  "author": "Rod Vagg <rod@vagg.org>",
@@ -38,6 +38,7 @@ const types = {
38
38
  'linux-riscv64': 'linux-riscv64',
39
39
  'linux-x64-glibc-217': 'linux-x64-glibc-217',
40
40
  'linux-x64-musl': 'linux-x64-musl',
41
+ 'linux-arm64-musl': 'linux-arm64-musl',
41
42
  'linux-x64-pointer-compression': 'linux-x64-pointer-compression',
42
43
  'linux-x64-usdt': 'linux-x64-usdt',
43
44
  'linux-x64-debug': 'linux-x64-debug',
@@ -114,6 +114,8 @@ const tests = [
114
114
  { file: 'node-v14.13.0-linux-armv6l.tar.xz' },
115
115
  { file: 'node-v14.13.0-linux-x64-musl.tar.gz', type: 'linux-x64-musl' },
116
116
  { file: 'node-v14.13.0-linux-x64-musl.tar.xz' },
117
+ { file: 'node-v14.13.0-linux-arm64-musl.tar.gz', type: 'linux-arm64-musl' },
118
+ { file: 'node-v14.13.0-linux-arm64-musl.tar.xz' },
117
119
  { file: 'node-v14.13.0-linux-x64-pointer-compression.tar.gz', type: 'linux-x64-pointer-compression' },
118
120
  { file: 'node-v14.13.0-linux-x64-pointer-compression.tar.xz' },
119
121
  { file: 'node-v14.13.0-linux-x64-usdt.tar.gz', type: 'linux-x64-usdt' },