cspell-io 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.
package/dist/esm/errors/error.js
CHANGED
|
@@ -47,6 +47,6 @@ export function toFetchUrlError(err, url) {
|
|
|
47
47
|
return err instanceof FetchUrlError ? err : FetchUrlError.fromError(url, toError(err));
|
|
48
48
|
}
|
|
49
49
|
export function toError(err) {
|
|
50
|
-
return err instanceof Error ? err : Error('Unknown Error', { cause: err });
|
|
50
|
+
return err instanceof Error ? err : new Error('Unknown Error', { cause: err });
|
|
51
51
|
}
|
|
52
52
|
//# sourceMappingURL=FetchError.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell-io",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.2",
|
|
4
4
|
"description": "A library of useful I/O functions used across various cspell tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"typescript": "^5.4.5"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@cspell/cspell-service-bus": "8.8.
|
|
55
|
+
"@cspell/cspell-service-bus": "8.8.2"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "e82ec807677c040c38b7d5608c8a8d42185d3b24"
|
|
58
58
|
}
|