shelving 1.117.1 → 1.117.2

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.
@@ -3,7 +3,7 @@
3
3
  * - Context is appended to `.message` in the format `message: debuggedContext`
4
4
  * - Context is converted to a string using `debug()`
5
5
  */
6
- export declare class EnhancedError extends global.Error {
6
+ export declare class EnhancedError extends Error {
7
7
  readonly context: unknown;
8
8
  constructor(message: string, context?: unknown);
9
9
  }
@@ -4,7 +4,7 @@ import { debug } from "../util/debug.js";
4
4
  * - Context is appended to `.message` in the format `message: debuggedContext`
5
5
  * - Context is converted to a string using `debug()`
6
6
  */
7
- export class EnhancedError extends global.Error {
7
+ export class EnhancedError extends Error {
8
8
  context;
9
9
  constructor(message, context) {
10
10
  const debugged = context !== undefined ? debug(context, 2) : "";
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "state-management",
12
12
  "query-builder"
13
13
  ],
14
- "version": "1.117.1",
14
+ "version": "1.117.2",
15
15
  "repository": "https://github.com/dhoulb/shelving",
16
16
  "author": "Dave Houlbrooke <dave@shax.com>",
17
17
  "license": "0BSD",