npm-pkgbuild 10.13.1 → 10.13.4
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 +2 -2
- package/src/extract-from-package.mjs +1 -1
- package/src/package.mjs +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-pkgbuild",
|
|
3
|
-
"version": "10.13.
|
|
3
|
+
"version": "10.13.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@npmcli/arborist": "^5.3.
|
|
43
|
+
"@npmcli/arborist": "^5.3.1",
|
|
44
44
|
"@vercel/nft": "^0.21.0",
|
|
45
45
|
"aggregate-async-iterator": "^1.1.14",
|
|
46
46
|
"commander": "^9.4.0",
|
|
@@ -166,7 +166,7 @@ export async function* extractFromPackage(options = {}) {
|
|
|
166
166
|
if (pkgbuild) {
|
|
167
167
|
if (modulePath) {
|
|
168
168
|
if (!pkgbuild.abstract) {
|
|
169
|
-
if(
|
|
169
|
+
if(pkgbuild.groups === groups) {
|
|
170
170
|
dependencies[pkgbuild.name || json.name] = ">=" + json.version;
|
|
171
171
|
}
|
|
172
172
|
}
|
package/src/package.mjs
CHANGED
|
@@ -92,7 +92,7 @@ const skipPattern = [
|
|
|
92
92
|
"./package.json",
|
|
93
93
|
"**package-lock.json",
|
|
94
94
|
"**yarn.lock",
|
|
95
|
-
"COPYING",
|
|
95
|
+
"**/COPYING",
|
|
96
96
|
".git*",
|
|
97
97
|
"**.npm*",
|
|
98
98
|
"**rollup.config.*",
|
|
@@ -104,7 +104,7 @@ const skipPattern = [
|
|
|
104
104
|
"**.bat",
|
|
105
105
|
"**.tmp",
|
|
106
106
|
"**.orig",
|
|
107
|
-
"
|
|
107
|
+
"**/*.d.ts",
|
|
108
108
|
"**.1",
|
|
109
109
|
"**.patch",
|
|
110
110
|
"**.cc",
|
|
@@ -145,6 +145,7 @@ const skipPattern = [
|
|
|
145
145
|
"cypress.json",
|
|
146
146
|
".airtap.yml",
|
|
147
147
|
".jscs.json",
|
|
148
|
+
"python3",
|
|
148
149
|
"sauce-labs.svg",
|
|
149
150
|
"*Makefile*",
|
|
150
151
|
"CONTRIBUTING*",
|