@nu-art/build-and-install 0.204.48 → 0.204.49
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 +1 -1
- package/phases/phases.js +2 -0
package/package.json
CHANGED
package/phases/phases.js
CHANGED
|
@@ -505,6 +505,8 @@ exports.Phase_Compile = {
|
|
|
505
505
|
var _a, _b, _c;
|
|
506
506
|
if (_pkg.name === pkg.name)
|
|
507
507
|
return false;
|
|
508
|
+
if (_pkg.type === types_1.PackageType_Python)
|
|
509
|
+
return false;
|
|
508
510
|
if (((_a = pkg.packageJsonOutput) === null || _a === void 0 ? void 0 : _a.dependencies) && !(0, ts_common_1._keys)((_b = pkg.packageJsonOutput) === null || _b === void 0 ? void 0 : _b.dependencies).includes((_c = _pkg.packageJsonTemplate) === null || _c === void 0 ? void 0 : _c.name))
|
|
509
511
|
return false;
|
|
510
512
|
return _pkg.type !== 'sourceless';
|