zarro 1.173.4 → 1.173.6
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.
|
@@ -993,7 +993,7 @@ WARNING: 'dotnet pack' ignores --version-suffix when a nuspec file is provided.
|
|
|
993
993
|
for (const pkg of opts.packages) {
|
|
994
994
|
const test = isRegex(pkg)
|
|
995
995
|
? (s) => pkg.test(s)
|
|
996
|
-
: (s) =>
|
|
996
|
+
: (s) => s.toLowerCase() == pkg.toLowerCase();
|
|
997
997
|
for (const projectPackage of projectPackages) {
|
|
998
998
|
if (test(projectPackage.id)) {
|
|
999
999
|
toUpgrade.push(projectPackage.id);
|
|
@@ -1001,6 +1001,10 @@ WARNING: 'dotnet pack' ignores --version-suffix when a nuspec file is provided.
|
|
|
1001
1001
|
}
|
|
1002
1002
|
}
|
|
1003
1003
|
if (toUpgrade.length === 0) {
|
|
1004
|
+
if (opts.showProgress) {
|
|
1005
|
+
console.log(` -> no matching packages to upgrade in '${project}'`);
|
|
1006
|
+
}
|
|
1007
|
+
continue;
|
|
1004
1008
|
}
|
|
1005
1009
|
const message = `searching for ${toUpgrade.length} packages to upgrade in ${project}`;
|
|
1006
1010
|
const upstream = await ctx.exec(message, async () => {
|