@thi.ng/errors 2.5.4 → 2.5.6
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/README.md +2 -2
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -60,10 +60,10 @@ import * as err from "@thi.ng/errors";
|
|
|
60
60
|
Browser ESM import:
|
|
61
61
|
|
|
62
62
|
```html
|
|
63
|
-
<script type="module" src="https://
|
|
63
|
+
<script type="module" src="https://esm.run/@thi.ng/errors"></script>
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
[
|
|
66
|
+
[JSDelivr documentation](https://www.jsdelivr.com/)
|
|
67
67
|
|
|
68
68
|
For Node.js REPL:
|
|
69
69
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/errors",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.6",
|
|
4
4
|
"description": "Custom error types and error factory functions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"build": "yarn build:esbuild && yarn build:decl",
|
|
28
28
|
"build:decl": "tsc --declaration --emitDeclarationOnly",
|
|
29
29
|
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
|
|
30
|
-
"clean": "
|
|
30
|
+
"clean": "bun ../../tools/src/clean-package.ts",
|
|
31
31
|
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
|
|
32
32
|
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
|
|
33
33
|
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
"@microsoft/api-extractor": "^7.43.0",
|
|
40
40
|
"@types/node": "^20.11.30",
|
|
41
41
|
"esbuild": "^0.20.2",
|
|
42
|
-
"rimraf": "^5.0.5",
|
|
43
42
|
"typedoc": "^0.25.12",
|
|
44
43
|
"typescript": "^5.4.3"
|
|
45
44
|
},
|
|
@@ -98,5 +97,5 @@
|
|
|
98
97
|
"alias": "err",
|
|
99
98
|
"year": 2018
|
|
100
99
|
},
|
|
101
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "5dd66c18a3862a3af69a5b2f49563f7cbdd960c2\n"
|
|
102
101
|
}
|