@thi.ng/errors 2.5.9 → 2.5.11
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 +12 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 188 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
- [Status](#status)
|
|
19
19
|
- [Installation](#installation)
|
|
20
20
|
- [Dependencies](#dependencies)
|
|
21
|
+
- [Usage examples](#usage-examples)
|
|
21
22
|
- [API](#api)
|
|
22
23
|
- [Environment variables](#environment-variables)
|
|
23
24
|
- [Authors](#authors)
|
|
@@ -77,6 +78,16 @@ Package sizes (brotli'd, pre-treeshake): ESM: 817 bytes
|
|
|
77
78
|
|
|
78
79
|
None
|
|
79
80
|
|
|
81
|
+
## Usage examples
|
|
82
|
+
|
|
83
|
+
One project in this repo's
|
|
84
|
+
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
85
|
+
directory is using this package:
|
|
86
|
+
|
|
87
|
+
| Description | Live demo | Source |
|
|
88
|
+
|:-----------------------------------------------------------------------------|:---------------------------------------------------|:--------------------------------------------------------------------------------|
|
|
89
|
+
| GPU-based data reduction using thi.ng/shader-ast & WebGL multi-pass pipeline | [Demo](https://demo.thi.ng/umbrella/gpgpu-reduce/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/gpgpu-reduce) |
|
|
90
|
+
|
|
80
91
|
## API
|
|
81
92
|
|
|
82
93
|
[Generated API docs](https://docs.thi.ng/umbrella/errors/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/errors",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.11",
|
|
4
4
|
"description": "Custom error types and error factory functions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@microsoft/api-extractor": "^7.47.0",
|
|
40
|
-
"@types/node": "^20.14.
|
|
41
|
-
"esbuild": "^0.
|
|
42
|
-
"typedoc": "^0.
|
|
43
|
-
"typescript": "^5.5.
|
|
40
|
+
"@types/node": "^20.14.10",
|
|
41
|
+
"esbuild": "^0.23.0",
|
|
42
|
+
"typedoc": "^0.26.3",
|
|
43
|
+
"typescript": "^5.5.3"
|
|
44
44
|
},
|
|
45
45
|
"keywords": [
|
|
46
46
|
"assert",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"alias": "err",
|
|
98
98
|
"year": 2018
|
|
99
99
|
},
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "ba4f2cd15eeb0cae30efe222524da4fed2a57267\n"
|
|
101
101
|
}
|