@firtoz/maybe-error 1.3.2 → 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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @firtoz/maybe-error
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/%40firtoz%2Fmaybe-error.svg)](https://www.npmjs.com/package/@firtoz/maybe-error)
4
+ [![npm downloads](https://img.shields.io/npm/dm/%40firtoz%2Fmaybe-error.svg)](https://www.npmjs.com/package/@firtoz/maybe-error)
5
+ [![license](https://img.shields.io/npm/l/%40firtoz%2Fmaybe-error.svg)](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.2",
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",
@@ -19,7 +19,8 @@
19
19
  ],
20
20
  "scripts": {
21
21
  "typecheck": "tsc --noEmit",
22
- "lint": "biome lint src --write",
22
+ "lint": "biome check --write src",
23
+ "lint:ci": "biome ci src",
23
24
  "format": "biome format src --write",
24
25
  "test": "bun test",
25
26
  "test:watch": "bun test --watch"
@@ -49,6 +50,6 @@
49
50
  "access": "public"
50
51
  },
51
52
  "devDependencies": {
52
- "bun-types": "^1.2.23"
53
+ "bun-types": "^1.3.0"
53
54
  }
54
55
  }