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) => projectPackages.find(pp => pp.id.toLowerCase() === s.toLowerCase());
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 () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.173.4",
3
+ "version": "1.173.6",
4
4
  "description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
5
5
  "bin": {
6
6
  "zarro": "./index.js"