npm-pkgbuild 18.2.3 → 18.2.5
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/package.json +6 -6
- package/src/npm-pkgbuild-cli.mjs +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-pkgbuild",
|
|
3
|
-
"version": "18.2.
|
|
3
|
+
"version": "18.2.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": false
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"compare-versions": "^6.1.1",
|
|
59
59
|
"content-entry": "^14.2.2",
|
|
60
60
|
"content-entry-filesystem": "^9.0.9",
|
|
61
|
-
"content-entry-transform": "^1.5.
|
|
61
|
+
"content-entry-transform": "^1.5.6",
|
|
62
62
|
"execa": "^9.5.3",
|
|
63
63
|
"expression-expander": "^7.2.7",
|
|
64
64
|
"ini": "^5.0.0",
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
"pacote": "^21.0.0",
|
|
70
70
|
"pkg-dir": "^8.0.0",
|
|
71
71
|
"tar-stream": "^3.1.7",
|
|
72
|
-
"uti": "^8.
|
|
72
|
+
"uti": "^8.9.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@types/node": "^22.15.
|
|
75
|
+
"@types/node": "^22.15.21",
|
|
76
76
|
"ava": "^6.3.0",
|
|
77
77
|
"c8": "^10.1.3",
|
|
78
78
|
"documentation": "^14.0.3",
|
|
@@ -81,8 +81,8 @@
|
|
|
81
81
|
"typescript": "^5.8.3"
|
|
82
82
|
},
|
|
83
83
|
"engines": {
|
|
84
|
-
"node": ">=22.
|
|
85
|
-
"bun": ">=1.2.
|
|
84
|
+
"node": ">=22.16.0",
|
|
85
|
+
"bun": ">=1.2.13"
|
|
86
86
|
},
|
|
87
87
|
"repository": {
|
|
88
88
|
"type": "git",
|
package/src/npm-pkgbuild-cli.mjs
CHANGED
|
@@ -113,12 +113,13 @@ program
|
|
|
113
113
|
});
|
|
114
114
|
const arch = proc.stdout.split(/\s*,\s*/)[1];
|
|
115
115
|
|
|
116
|
+
console.log('SKIP', entry.name, arch, properties.arch);
|
|
117
|
+
|
|
116
118
|
if(arch === 'ARM aarch64') {
|
|
117
119
|
return entry;
|
|
118
120
|
}
|
|
119
121
|
|
|
120
|
-
|
|
121
|
-
return entry;
|
|
122
|
+
//return entry;
|
|
122
123
|
}
|
|
123
124
|
},
|
|
124
125
|
createExpressionTransformer(
|