npm-pkgbuild 7.19.4 → 7.19.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
|
@@ -115,7 +115,9 @@ export async function extractFromPackage(pkg, dir) {
|
|
|
115
115
|
};
|
|
116
116
|
|
|
117
117
|
await packageWalker(async (pkg, base, modulePath) => {
|
|
118
|
-
|
|
118
|
+
if (modulePath.length > 0) {
|
|
119
|
+
processPkg(pkg, base);
|
|
120
|
+
}
|
|
119
121
|
return true;
|
|
120
122
|
}, dir);
|
|
121
123
|
|