npm-pkgbuild 11.10.3 → 11.10.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 +5 -5
- package/src/npm-pkgbuild-cli.mjs +1 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-pkgbuild",
|
|
3
|
-
"version": "11.10.
|
|
3
|
+
"version": "11.10.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -56,18 +56,18 @@
|
|
|
56
56
|
"ini": "^4.1.0",
|
|
57
57
|
"iterable-string-interceptor": "^2.2.4",
|
|
58
58
|
"key-value-transformer": "^3.1.1",
|
|
59
|
-
"node-fetch": "^3.3.
|
|
59
|
+
"node-fetch": "^3.3.2",
|
|
60
60
|
"npm-package-walker": "^6.2.4",
|
|
61
61
|
"npm-packlist": "^7.0.4",
|
|
62
62
|
"pacote": "^15.2.0",
|
|
63
63
|
"pkg-dir": "^7.0.0",
|
|
64
64
|
"tar-stream": "^3.1.6",
|
|
65
|
-
"uti": "^7.
|
|
65
|
+
"uti": "^7.4.1"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@types/node": "^20.4.
|
|
68
|
+
"@types/node": "^20.4.4",
|
|
69
69
|
"ava": "^5.3.1",
|
|
70
|
-
"c8": "^8.0.
|
|
70
|
+
"c8": "^8.0.1",
|
|
71
71
|
"documentation": "^14.0.2",
|
|
72
72
|
"semantic-release": "^21.0.7",
|
|
73
73
|
"stream-buffers": "^3.0.2",
|
package/src/npm-pkgbuild-cli.mjs
CHANGED
|
@@ -118,10 +118,7 @@ program
|
|
|
118
118
|
const o = new outputFactory(properties);
|
|
119
119
|
const transformer = [
|
|
120
120
|
createExpressionTransformer(
|
|
121
|
-
(entry) =>
|
|
122
|
-
const flag = uc.fileNameConformsTo(entry.name, "public.text");
|
|
123
|
-
console.log("UTI", entry.name, flag);
|
|
124
|
-
return flag; },
|
|
121
|
+
(entry) => uc.fileNameConformsTo(entry.name, "public.text"),
|
|
125
122
|
properties
|
|
126
123
|
)
|
|
127
124
|
];
|