npm-pkgbuild 20.8.12 → 20.8.14
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": "20.8.
|
|
3
|
+
"version": "20.8.14",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": false
|
|
@@ -60,14 +60,14 @@
|
|
|
60
60
|
"key-value-transformer": "^3.3.2",
|
|
61
61
|
"npm-package-walker": "^8.0.11",
|
|
62
62
|
"npm-packlist": "^11.3.0",
|
|
63
|
-
"pacc": "^11.
|
|
63
|
+
"pacc": "^11.1.3",
|
|
64
64
|
"package-directory": "^8.2.0",
|
|
65
65
|
"pacote": "^22.0.0",
|
|
66
66
|
"tar-stream": "^3.1.7",
|
|
67
|
-
"uti": "^8.11.
|
|
67
|
+
"uti": "^8.11.3"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@types/node": "^26.
|
|
70
|
+
"@types/node": "^26.2.0",
|
|
71
71
|
"ava": "^8.0.1",
|
|
72
72
|
"c8": "^12.0.0",
|
|
73
73
|
"documentation": "^14.0.3",
|
|
@@ -414,7 +414,7 @@ export async function* extractFromPackage(options = {}, env = {}) {
|
|
|
414
414
|
conflicts: mergeDependencies(result.conflicts, output.conflicts)
|
|
415
415
|
};
|
|
416
416
|
|
|
417
|
-
const context = {
|
|
417
|
+
const context = { current: properties };
|
|
418
418
|
|
|
419
419
|
const sources = [];
|
|
420
420
|
expand(content, context).reduce((a, { content, dir }) => {
|
package/src/npm-pkgbuild-cli.mjs
CHANGED