@dry-software/cmake-js 7.3.0 → 7.3.1

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,7 @@
1
+ # v7.3.1 - 23/03/25
2
+
3
+ - feat(windows): support for arm64 node
4
+
1
5
  # v7.3.0 - 15/01/23
2
6
 
3
7
  - feat(windows): replace custom libnode.def generation with version from node-api-headers
@@ -24,7 +24,7 @@ const runtimePaths = {
24
24
  externalPath: NODE_MIRROR + '/v' + targetOptions.runtimeVersion + '/',
25
25
  winLibs: [
26
26
  {
27
- dir: targetOptions.isArm64 ? 'arm64' : targetOptions.isX64 ? 'win-x64' : 'win-x86',
27
+ dir: targetOptions.isArm64 ? 'win-arm64' : targetOptions.isX64 ? 'win-x64' : 'win-x86',
28
28
  name: targetOptions.runtime + '.lib',
29
29
  },
30
30
  ],
@@ -68,7 +68,7 @@ const runtimePaths = {
68
68
  externalPath: ELECTRON_MIRROR + '/v' + targetOptions.runtimeVersion + '/',
69
69
  winLibs: [
70
70
  {
71
- dir: targetOptions.isX64 ? 'x64' : '',
71
+ dir: targetOptions.isArm64 ? 'arm64' : targetOptions.isX64 ? 'x64' : '',
72
72
  name: 'node.lib',
73
73
  },
74
74
  ],
package/package.json CHANGED
@@ -21,7 +21,7 @@
21
21
  "node-addon-api"
22
22
  ],
23
23
  "main": "lib",
24
- "version": "7.3.0",
24
+ "version": "7.3.1",
25
25
  "author": "Gábor Mező aka unbornchikken",
26
26
  "maintainers": [
27
27
  {