@thi.ng/errors 2.1.4 → 2.1.7
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/CHANGELOG.md +1 -1
- package/assert.d.ts +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
package/assert.d.ts
CHANGED
|
@@ -17,5 +17,5 @@ export declare const AssertionError: {
|
|
|
17
17
|
* The function is only enabled if `process.env.NODE_ENV != "production"`
|
|
18
18
|
* or if the `UMBRELLA_ASSERTS` env var is set to 1.
|
|
19
19
|
*/
|
|
20
|
-
export declare const assert: (test: boolean | (() => boolean), msg?: string | (() => string)
|
|
20
|
+
export declare const assert: (test: boolean | (() => boolean), msg?: string | (() => string)) => void;
|
|
21
21
|
//# sourceMappingURL=assert.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/errors",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.7",
|
|
4
4
|
"description": "Custom error types and error factory functions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@microsoft/api-extractor": "^7.
|
|
38
|
-
"@thi.ng/testament": "^0.2.
|
|
39
|
-
"@types/node": "^17.0.
|
|
37
|
+
"@microsoft/api-extractor": "^7.25.0",
|
|
38
|
+
"@thi.ng/testament": "^0.2.8",
|
|
39
|
+
"@types/node": "^17.0.41",
|
|
40
40
|
"rimraf": "^3.0.2",
|
|
41
41
|
"tools": "^0.0.1",
|
|
42
|
-
"typedoc": "^0.22.
|
|
43
|
-
"typescript": "^4.
|
|
42
|
+
"typedoc": "^0.22.17",
|
|
43
|
+
"typescript": "^4.7.3"
|
|
44
44
|
},
|
|
45
45
|
"keywords": [
|
|
46
46
|
"assert",
|
|
@@ -63,32 +63,32 @@
|
|
|
63
63
|
],
|
|
64
64
|
"exports": {
|
|
65
65
|
".": {
|
|
66
|
-
"
|
|
66
|
+
"default": "./index.js"
|
|
67
67
|
},
|
|
68
68
|
"./assert": {
|
|
69
|
-
"
|
|
69
|
+
"default": "./assert.js"
|
|
70
70
|
},
|
|
71
71
|
"./deferror": {
|
|
72
|
-
"
|
|
72
|
+
"default": "./deferror.js"
|
|
73
73
|
},
|
|
74
74
|
"./illegal-arguments": {
|
|
75
|
-
"
|
|
75
|
+
"default": "./illegal-arguments.js"
|
|
76
76
|
},
|
|
77
77
|
"./illegal-arity": {
|
|
78
|
-
"
|
|
78
|
+
"default": "./illegal-arity.js"
|
|
79
79
|
},
|
|
80
80
|
"./illegal-state": {
|
|
81
|
-
"
|
|
81
|
+
"default": "./illegal-state.js"
|
|
82
82
|
},
|
|
83
83
|
"./out-of-bounds": {
|
|
84
|
-
"
|
|
84
|
+
"default": "./out-of-bounds.js"
|
|
85
85
|
},
|
|
86
86
|
"./unsupported": {
|
|
87
|
-
"
|
|
87
|
+
"default": "./unsupported.js"
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
"thi.ng": {
|
|
91
91
|
"year": 2018
|
|
92
92
|
},
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "9e516d30a1a537e027a6b3d78bf9121bc5831d31\n"
|
|
94
94
|
}
|