zarro 1.153.4 → 1.154.0

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.
@@ -11,7 +11,11 @@
11
11
  env.associate("default-tools-installer", ["BUILD_TOOLS_FOLDER", "DOTNET_CORE"]);
12
12
  gulp.task("default-tools-installer", `Installs the default toolset: ${tools.join(", ")}`, () => {
13
13
  if (env.resolveFlag("DOTNET_CORE")) {
14
- debug("not invoked for dotnet core builds");
14
+ debug(`DOTNET_CORE builds currently have ${tools.length} default tools to install`);
15
+ }
16
+ if (tools.length === 0) {
17
+ // don't waste time calling into the installer
18
+ // when there are no tools to install
15
19
  return Promise.resolve();
16
20
  }
17
21
  return installLocalTools.install(tools);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.153.4",
3
+ "version": "1.154.0",
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"