npm-pkgbuild 15.5.3 → 15.5.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-pkgbuild",
|
|
3
|
-
"version": "15.5.
|
|
3
|
+
"version": "15.5.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -65,19 +65,19 @@
|
|
|
65
65
|
"ini": "^5.0.0",
|
|
66
66
|
"iterable-string-interceptor": "^3.0.0",
|
|
67
67
|
"key-value-transformer": "^3.2.3",
|
|
68
|
-
"npm-package-walker": "^7.0.
|
|
69
|
-
"npm-packlist": "^
|
|
70
|
-
"pacote": "^
|
|
68
|
+
"npm-package-walker": "^7.0.7",
|
|
69
|
+
"npm-packlist": "^9.0.0",
|
|
70
|
+
"pacote": "^19.0.0",
|
|
71
71
|
"pkg-dir": "^8.0.0",
|
|
72
72
|
"tar-stream": "^3.1.7",
|
|
73
73
|
"uti": "^8.7.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@types/node": "^22.
|
|
76
|
+
"@types/node": "^22.7.4",
|
|
77
77
|
"ava": "^6.1.3",
|
|
78
78
|
"c8": "^10.1.2",
|
|
79
79
|
"documentation": "^14.0.3",
|
|
80
|
-
"semantic-release": "^24.1.
|
|
80
|
+
"semantic-release": "^24.1.2",
|
|
81
81
|
"stream-buffers": "^3.0.3",
|
|
82
82
|
"typescript": "^5.6.2"
|
|
83
83
|
},
|
|
@@ -43,7 +43,7 @@ export class NodeModulesContentProvider extends ContentProvider {
|
|
|
43
43
|
let pkgSourceDir = this.dir;
|
|
44
44
|
|
|
45
45
|
if (this.withoutDevelpmentDependencies) {
|
|
46
|
-
pkgSourceDir = await mkdtemp(join(tmpdir(), "
|
|
46
|
+
pkgSourceDir = await mkdtemp(join(tmpdir(), "modules"));
|
|
47
47
|
|
|
48
48
|
const json = JSON.parse(
|
|
49
49
|
//@ts-ignore
|
|
@@ -251,14 +251,19 @@ const toBeSkipped = new RegExp(
|
|
|
251
251
|
"SECURITY\\.md",
|
|
252
252
|
"SFTPStream\\.md",
|
|
253
253
|
"LIMITS\\.md",
|
|
254
|
+
"[\\d\\-]+\\.md",
|
|
254
255
|
"DEPS",
|
|
255
256
|
"__tests__",
|
|
257
|
+
"\\.test\\.js",
|
|
258
|
+
"__snapshots__",
|
|
256
259
|
"Porting-Buffer\\.md",
|
|
257
260
|
"chains and topics\\.md",
|
|
258
261
|
"build_detect_platform",
|
|
262
|
+
"\\.snap",
|
|
259
263
|
"install_daemon_node.node",
|
|
260
264
|
"tsconfig.build.json",
|
|
261
|
-
"typedoc.json"
|
|
265
|
+
"typedoc.json",
|
|
266
|
+
"webpack.config.js"
|
|
262
267
|
].join("|") +
|
|
263
268
|
")$|(node_modules/(npm-pkgbuild|@types|node-addon-api|mf-hosting|node-gyp$)|(win32|android|darwin)-(ia32|x64|arm|arm64))",
|
|
264
269
|
"i"
|