effect-errors 1.3.8 → 1.3.9

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/pretty-print.js +1 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "repository": "https://github.com/jpb06/effect-errors.git",
3
3
  "main": "index.js",
4
4
  "name": "effect-errors",
5
- "version": "1.3.8",
5
+ "version": "1.3.9",
6
6
  "author": "jpb06 <jp.bois.06@outlook.fr>",
7
7
  "description": "A POC for errors reporting in Effect",
8
8
  "keywords": [],
@@ -27,9 +27,9 @@
27
27
  "run-examples": "bun run ./src/examples/util/run-all"
28
28
  },
29
29
  "dependencies": {
30
- "@effect/schema": "^0.66.12",
30
+ "@effect/schema": "^0.66.13",
31
31
  "chalk": "<5",
32
- "effect": "^3.1.0"
32
+ "effect": "^3.1.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@eslint/eslintrc": "^3.0.2",
package/pretty-print.js CHANGED
@@ -20,7 +20,7 @@ var prettyPrint = function (cause, _a) {
20
20
  return 'All fibers interrupted without errors.';
21
21
  }
22
22
  var failures = (0, capture_errors_from_cause_1.captureErrorsFrom)(cause);
23
- console.error("\r\n\uD83E\uDEE0 ".concat(chalk_1.default.bold.yellowBright.underline("".concat(failures.length, " error").concat(failures.length > 1 ? 's' : '', " occurred\r\n"))));
23
+ console.error("\r\n\uD83E\uDEE0 ".concat(chalk_1.default.bold.yellowBright.underline("".concat(failures.length, " error").concat(failures.length > 1 ? 's' : '', " occured\r\n"))));
24
24
  return failures
25
25
  .map(function (_a, failuresIndex) {
26
26
  var _b;