effect 3.17.7 → 3.17.8
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.
- package/dist/cjs/Schema.js +1 -1
- package/dist/cjs/Schema.js.map +1 -1
- package/dist/cjs/internal/version.js +1 -1
- package/dist/esm/Schema.js +1 -1
- package/dist/esm/Schema.js.map +1 -1
- package/dist/esm/internal/version.js +1 -1
- package/package.json +1 -1
- package/src/Schema.ts +1 -1
- package/src/internal/version.ts +1 -1
package/package.json
CHANGED
package/src/Schema.ts
CHANGED
|
@@ -9992,7 +9992,7 @@ export class Defect extends transform(
|
|
|
9992
9992
|
err.stack = "stack" in i && typeof i.stack === "string" ? i.stack : ""
|
|
9993
9993
|
return err
|
|
9994
9994
|
}
|
|
9995
|
-
return
|
|
9995
|
+
return internalCause_.prettyErrorMessage(i)
|
|
9996
9996
|
},
|
|
9997
9997
|
encode: (a) => {
|
|
9998
9998
|
if (a instanceof Error) {
|
package/src/internal/version.ts
CHANGED