@firtoz/maybe-error 1.3.1 → 1.3.3
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 +4 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @firtoz/maybe-error
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@firtoz/maybe-error)
|
|
4
|
+
[](https://www.npmjs.com/package/@firtoz/maybe-error)
|
|
5
|
+
[](https://github.com/firtoz/fullstack-toolkit/blob/main/LICENSE)
|
|
6
|
+
|
|
3
7
|
Type-safe result handling with the MaybeError pattern for TypeScript. Perfect for elegant error handling without exceptions.
|
|
4
8
|
|
|
5
9
|
## Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firtoz/maybe-error",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "Type-safe result handling with MaybeError pattern",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"module": "./src/index.ts",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"README.md"
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
|
-
"build": "echo 'No build step - using TypeScript source directly'",
|
|
22
21
|
"typecheck": "tsc --noEmit",
|
|
23
|
-
"lint": "biome
|
|
22
|
+
"lint": "biome check --write src",
|
|
23
|
+
"lint:ci": "biome ci src",
|
|
24
24
|
"format": "biome format src --write",
|
|
25
25
|
"test": "bun test",
|
|
26
26
|
"test:watch": "bun test --watch"
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"bun-types": "^1.
|
|
53
|
+
"bun-types": "^1.3.0"
|
|
54
54
|
}
|
|
55
55
|
}
|