zarro 1.176.1 → 1.176.2
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.
|
@@ -1009,11 +1009,14 @@ WARNING: 'dotnet pack' ignores --version-suffix when a nuspec file is provided.
|
|
|
1009
1009
|
}
|
|
1010
1010
|
continue;
|
|
1011
1011
|
}
|
|
1012
|
-
const s = toUpgrade.length === 1 ? "" : "s", message = `searching for ${toUpgrade.length} package${s} to upgrade in ${project}
|
|
1012
|
+
const s = toUpgrade.length === 1 ? "" : "s", message = `searching for ${toUpgrade.length} package${s} to upgrade in ${project}`, upgradeIds = toUpgrade.map(o => o.id);
|
|
1013
1013
|
const upstream = await ctx.exec(message, async () => {
|
|
1014
1014
|
var _a;
|
|
1015
|
-
return await searchForMultiplePackages(
|
|
1015
|
+
return await searchForMultiplePackages(upgradeIds, opts.source, (_a = opts.preRelease) !== null && _a !== void 0 ? _a : false);
|
|
1016
1016
|
});
|
|
1017
|
+
if (upstream.length === 0) {
|
|
1018
|
+
log.warn(`No results found for packages at ${opts.source} (preRelease: ${!!opts.preRelease})\n- ${upgradeIds.join("\n- ")}`);
|
|
1019
|
+
}
|
|
1017
1020
|
for (const pkg of upstream) {
|
|
1018
1021
|
const projectMatch = toUpgrade.find(o => o.id.toLowerCase() === pkg.id.toLowerCase());
|
|
1019
1022
|
if (!projectMatch) {
|