retuple 1.0.0-next.0 → 1.0.0-next.10
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/README.md +14 -1
- package/dist/index.cjs +669 -111
- package/dist/index.d.cts +1779 -110
- package/dist/index.d.ts +1779 -110
- package/dist/index.js +662 -109
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "retuple",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.10",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"test": "vitest",
|
|
6
6
|
"lint": "eslint . --ext .ts -c eslint.config.mjs --fix",
|
|
@@ -13,16 +13,16 @@
|
|
|
13
13
|
"module": "./dist/index.js",
|
|
14
14
|
"zshy": "./src/index.ts",
|
|
15
15
|
"keywords": [
|
|
16
|
-
"error",
|
|
17
|
-
"handling",
|
|
18
|
-
"safe",
|
|
19
16
|
"result",
|
|
17
|
+
"safe",
|
|
20
18
|
"throw",
|
|
19
|
+
"error",
|
|
20
|
+
"handling",
|
|
21
21
|
"monad"
|
|
22
22
|
],
|
|
23
23
|
"author": "Matthew Wilson",
|
|
24
24
|
"license": "MIT",
|
|
25
|
-
"description": "A
|
|
25
|
+
"description": "A Result type built around tuples. Treat errors as values, and make exceptions exceptional.",
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
28
|
"url": "git+https://github.com/traverse1984/retuple.git"
|