kerium 1.3.3 → 1.3.4

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/dist/error.js +1 -1
  2. package/package.json +1 -1
package/dist/error.js CHANGED
@@ -449,7 +449,7 @@ export class Exception extends Error {
449
449
  super(message);
450
450
  this.errno = errno;
451
451
  this.code = code;
452
- Object.assign(this, omit(ctx, 'message', 'path', 'dest'));
452
+ Object.assign(this, omit(ctx, 'message'));
453
453
  Error.captureStackTrace?.(this, this.constructor);
454
454
  }
455
455
  toString() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kerium",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "POSIX-style errors, logging, and more",
5
5
  "author": "James Prevett <jp@jamespre.dev> (https://jamespre.dev)",
6
6
  "repository": {