@thi.ng/errors 1.3.0 → 1.3.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 +29 -5
- package/package.json +3 -14
package/CHANGELOG.md
CHANGED
|
@@ -3,19 +3,23 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
## [1.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.3.3...@thi.ng/errors@1.3.4) (2021-08-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @thi.ng/errors
|
|
7
9
|
|
|
8
10
|
|
|
9
|
-
### Features
|
|
10
11
|
|
|
11
|
-
* **errors:** add ensureIndex2(), update outOfBounds() arg type ([ab007d6](https://github.com/thi-ng/umbrella/commit/ab007d6b502c3d1650c7e9cf50da05f0ac042ef3))
|
|
12
|
-
* **errors:** add outOfBounds(), ensureIndex() ([fb5ca0a](https://github.com/thi-ng/umbrella/commit/fb5ca0a7f8a4a6648d3c8485a9108e9154ee4400))
|
|
13
12
|
|
|
14
13
|
|
|
14
|
+
## [1.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.3.2...@thi.ng/errors@1.3.3) (2021-08-08)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @thi.ng/errors
|
|
15
17
|
|
|
16
18
|
|
|
17
19
|
|
|
18
|
-
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [1.3.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.3.1...@thi.ng/errors@1.3.2) (2021-07-01)
|
|
19
23
|
|
|
20
24
|
**Note:** Version bump only for package @thi.ng/errors
|
|
21
25
|
|
|
@@ -23,6 +27,26 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
23
27
|
|
|
24
28
|
|
|
25
29
|
|
|
30
|
+
## [1.3.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.3.0...@thi.ng/errors@1.3.1) (2021-06-08)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @thi.ng/errors
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
# [1.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.2.32...@thi.ng/errors@1.3.0) (2021-03-17)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Features
|
|
42
|
+
|
|
43
|
+
* **errors:** add ensureIndex2(), update outOfBounds() arg type ([ab007d6](https://github.com/thi-ng/umbrella/commit/ab007d6b502c3d1650c7e9cf50da05f0ac042ef3))
|
|
44
|
+
* **errors:** add outOfBounds(), ensureIndex() ([fb5ca0a](https://github.com/thi-ng/umbrella/commit/fb5ca0a7f8a4a6648d3c8485a9108e9154ee4400))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
26
50
|
# [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.1.2...@thi.ng/errors@1.2.0) (2019-08-21)
|
|
27
51
|
|
|
28
52
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/errors",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"description": "Custom error types and error factory functions",
|
|
5
5
|
"module": "./index.js",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -33,21 +33,10 @@
|
|
|
33
33
|
"cover": "nyc mocha test && nyc report --reporter=lcov",
|
|
34
34
|
"clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib",
|
|
35
35
|
"doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts",
|
|
36
|
-
"doc": "
|
|
36
|
+
"doc": "typedoc --excludePrivate --out doc --theme ../../tools/doc/typedoc-theme src/index.ts",
|
|
37
37
|
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
|
|
38
38
|
"pub": "yarn build:release && yarn publish --access public"
|
|
39
39
|
},
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
|
42
|
-
"@microsoft/api-extractor": "^7.13.1",
|
|
43
|
-
"@types/mocha": "^8.2.0",
|
|
44
|
-
"@types/node": "^14.14.14",
|
|
45
|
-
"mocha": "^8.3.0",
|
|
46
|
-
"nyc": "^15.1.0",
|
|
47
|
-
"ts-node": "^9.1.1",
|
|
48
|
-
"typedoc": "^0.20.30",
|
|
49
|
-
"typescript": "^4.2.3"
|
|
50
|
-
},
|
|
51
40
|
"files": [
|
|
52
41
|
"*.js",
|
|
53
42
|
"*.d.ts",
|
|
@@ -68,5 +57,5 @@
|
|
|
68
57
|
"thi.ng": {
|
|
69
58
|
"year": 2018
|
|
70
59
|
},
|
|
71
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "538019e9d8ca6c5fee4754af93ad454c0674dc72"
|
|
72
61
|
}
|