@thi.ng/errors 2.2.3 → 2.2.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.
- package/CHANGELOG.md +6 -6
- package/README.md +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2022-
|
|
3
|
+
- **Last updated**: 2022-11-23T22:46:54Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -62,9 +62,9 @@ and/or version bumps of transitive dependencies.
|
|
|
62
62
|
|
|
63
63
|
#### ♻️ Refactoring
|
|
64
64
|
|
|
65
|
-
- update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
|
66
65
|
- update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
|
|
67
66
|
- add .js suffix for all relative imports
|
|
67
|
+
- update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
|
68
68
|
|
|
69
69
|
# [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/errors@2.0.0) (2021-10-12)
|
|
70
70
|
|
|
@@ -85,25 +85,25 @@ and/or version bumps of transitive dependencies.
|
|
|
85
85
|
|
|
86
86
|
#### 🚀 Features
|
|
87
87
|
|
|
88
|
-
- add snowpack env var support for assert ([52822b1](https://github.com/thi-ng/umbrella/commit/52822b1))
|
|
89
88
|
- migrate assert() from [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/main/packages/api) ([7030a6a](https://github.com/thi-ng/umbrella/commit/7030a6a))
|
|
90
89
|
- add existing assert() fn from api pkg
|
|
91
90
|
- add AssertionError class
|
|
92
91
|
- update pkg
|
|
92
|
+
- add snowpack env var support for assert ([52822b1](https://github.com/thi-ng/umbrella/commit/52822b1))
|
|
93
93
|
|
|
94
94
|
#### ♻️ Refactoring
|
|
95
95
|
|
|
96
|
-
- set string as default generic ([936a9d7](https://github.com/thi-ng/umbrella/commit/936a9d7))
|
|
97
|
-
- update all test stubs ([f2d6d53](https://github.com/thi-ng/umbrella/commit/f2d6d53))
|
|
98
96
|
- update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
|
|
99
97
|
- update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
|
|
98
|
+
- update all test stubs ([f2d6d53](https://github.com/thi-ng/umbrella/commit/f2d6d53))
|
|
99
|
+
- set string as default generic ([936a9d7](https://github.com/thi-ng/umbrella/commit/936a9d7))
|
|
100
100
|
|
|
101
101
|
## [1.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/errors@1.3.0) (2021-03-17)
|
|
102
102
|
|
|
103
103
|
#### 🚀 Features
|
|
104
104
|
|
|
105
|
-
- add ensureIndex2(), update outOfBounds() arg type ([ab007d6](https://github.com/thi-ng/umbrella/commit/ab007d6))
|
|
106
105
|
- add outOfBounds(), ensureIndex() ([fb5ca0a](https://github.com/thi-ng/umbrella/commit/fb5ca0a))
|
|
106
|
+
- add ensureIndex2(), update outOfBounds() arg type ([ab007d6](https://github.com/thi-ng/umbrella/commit/ab007d6))
|
|
107
107
|
|
|
108
108
|
## [1.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/errors@1.2.0) (2019-08-21)
|
|
109
109
|
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/errors",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"description": "Custom error types and error factory functions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@microsoft/api-extractor": "^7.33.5",
|
|
38
|
-
"@thi.ng/testament": "^0.3.
|
|
39
|
-
"@types/node": "^18.11.
|
|
38
|
+
"@thi.ng/testament": "^0.3.5",
|
|
39
|
+
"@types/node": "^18.11.9",
|
|
40
40
|
"rimraf": "^3.0.2",
|
|
41
41
|
"tools": "^0.0.1",
|
|
42
|
-
"typedoc": "^0.23.
|
|
42
|
+
"typedoc": "^0.23.20",
|
|
43
43
|
"typescript": "^4.8.4"
|
|
44
44
|
},
|
|
45
45
|
"keywords": [
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"node": ">=12.7"
|
|
59
59
|
},
|
|
60
60
|
"files": [
|
|
61
|
-
"
|
|
62
|
-
"
|
|
61
|
+
"./*.js",
|
|
62
|
+
"./*.d.ts"
|
|
63
63
|
],
|
|
64
64
|
"exports": {
|
|
65
65
|
".": {
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"thi.ng": {
|
|
94
94
|
"year": 2018
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "044ee6a3895720fc78e115032d4d831b63510929\n"
|
|
97
97
|
}
|