@cspell/cspell-service-bus 8.8.1 → 8.8.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.
@@ -1,6 +1,6 @@
1
1
  export function assert(value, message) {
2
2
  if (!value) {
3
- const err = message instanceof Error ? message : Error(message ?? 'AssertionError');
3
+ const err = message instanceof Error ? message : new Error(message ?? 'AssertionError');
4
4
  throw err;
5
5
  }
6
6
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "8.8.1",
6
+ "version": "8.8.2",
7
7
  "description": "A Library for connecting requests to services that can fulfill them.",
8
8
  "keywords": [
9
9
  "cspell"
@@ -52,5 +52,5 @@
52
52
  "engines": {
53
53
  "node": ">=18"
54
54
  },
55
- "gitHead": "6381846ffce8b9a349bfda03262297aa8e301ef5"
55
+ "gitHead": "e82ec807677c040c38b7d5608c8a8d42185d3b24"
56
56
  }