zarro 1.173.8 → 1.173.12

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.
@@ -1006,20 +1006,21 @@ WARNING: 'dotnet pack' ignores --version-suffix when a nuspec file is provided.
1006
1006
  }
1007
1007
  continue;
1008
1008
  }
1009
- const message = `searching for ${toUpgrade.length} packages to upgrade in ${project}`;
1009
+ const s = toUpgrade.length === 1 ? "" : "s", message = `searching for ${toUpgrade.length} package${s} to upgrade in ${project}`;
1010
1010
  const upstream = await ctx.exec(message, async () => {
1011
1011
  var _a;
1012
1012
  return await searchForMultiplePackages(toUpgrade, opts.source, (_a = opts.preRelease) !== null && _a !== void 0 ? _a : false);
1013
1013
  });
1014
1014
  for (const pkg of upstream) {
1015
+ ctx.indent += 2;
1015
1016
  await ctx.exec(`installing '${pkg.id}' at version '${pkg.version}' into '${project}'`, async () => await installPackage({
1016
1017
  projectFile: project,
1017
1018
  id: pkg.id,
1018
1019
  version: pkg.version.toString(),
1019
1020
  source: opts.source,
1020
- noRestore: opts.noRestore,
1021
- preRelease: opts.preRelease
1021
+ noRestore: opts.noRestore
1022
1022
  }));
1023
+ ctx.indent -= 2;
1023
1024
  }
1024
1025
  }
1025
1026
  }
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.173.8",
3
+ "version": "1.173.12",
4
4
  "description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
5
5
  "bin": {
6
- "zarro": "./index.js"
6
+ "zarro": "index.js"
7
7
  },
8
8
  "homepage": "https://github.com/fluffynuts/zarro",
9
9
  "main": "index.js",