zarro 1.165.14 → 1.166.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,7 @@
11
11
  }
12
12
  catch (ex) {
13
13
  const e = ex, message = e.message || e.toString();
14
- if (message.match(/not a git repository/i)) {
14
+ if (message.match(/not a git repository/i) || message.match(/does not exist/)) {
15
15
  return defaultValue;
16
16
  }
17
17
  throw e;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ (function () {
3
+ const gulp = requireModule("gulp");
4
+ gulp.task("transpile-local-tasks", () => {
5
+ console.log("(this is a dummy task to force local task transpilation)");
6
+ return Promise.resolve();
7
+ });
8
+ })();
package/index.js CHANGED
@@ -11,7 +11,6 @@ const
11
11
  ls,
12
12
  readTextFile,
13
13
  fileExists,
14
- folderExists,
15
14
  readTextFileLines,
16
15
  writeTextFile
17
16
  } = require("yafs"),
@@ -21,8 +20,6 @@ const
21
20
  ZarroError = require("./gulp-tasks/modules/zarro-error"),
22
21
  { skip } = require("./gulp-tasks/modules/linq"),
23
22
  gatherArgs = require("./index-modules/gather-args");
24
- const { ExecStepContext } = require("exec-step");
25
- const { transpileModule, ModuleKind } = require("typescript");
26
23
 
27
24
  function requireHandler(name) {
28
25
  const result = require(`./index-modules/handlers/${ name }`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.165.14",
3
+ "version": "1.166.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"