zarro 1.194.0 → 1.195.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.
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.parseBool = void 0;
4
+ const ZarroError = requireModule("zarro-error");
4
5
  const truthy = [
5
6
  "1",
6
7
  "yes",
@@ -18,7 +19,7 @@ function parseBool(value, strict) {
18
19
  return false;
19
20
  }
20
21
  if (strict) {
21
- throw new Error(`could not parse '${value}' as a boolean value`);
22
+ throw new ZarroError(`could not parse '${value}' as a boolean value`);
22
23
  }
23
24
  return !!value;
24
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.194.0",
3
+ "version": "1.195.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"