@firtoz/maybe-error 1.3.0 → 1.3.2

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 +1 -1
  2. package/package.json +4 -5
package/README.md CHANGED
@@ -235,7 +235,7 @@ async function fetchMultipleUsers(ids: string[]): Promise<MaybeError<User[]>> {
235
235
 
236
236
  ## Contributing
237
237
 
238
- Contributions are welcome! This package is part of the [router-toolkit monorepo](https://github.com/firtoz/router-toolkit).
238
+ Contributions are welcome! This package is part of the [fullstack-toolkit monorepo](https://github.com/firtoz/fullstack-toolkit).
239
239
 
240
240
  ## License
241
241
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firtoz/maybe-error",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "Type-safe result handling with MaybeError pattern",
5
5
  "main": "./src/index.ts",
6
6
  "module": "./src/index.ts",
@@ -18,7 +18,6 @@
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
22
  "lint": "biome lint src --write",
24
23
  "format": "biome format src --write",
@@ -34,14 +33,14 @@
34
33
  ],
35
34
  "author": "Firtina Ozbalikchi <firtoz@github.com>",
36
35
  "license": "MIT",
37
- "homepage": "https://github.com/firtoz/router-toolkit#readme",
36
+ "homepage": "https://github.com/firtoz/fullstack-toolkit#readme",
38
37
  "repository": {
39
38
  "type": "git",
40
- "url": "https://github.com/firtoz/router-toolkit.git",
39
+ "url": "https://github.com/firtoz/fullstack-toolkit.git",
41
40
  "directory": "packages/maybe-error"
42
41
  },
43
42
  "bugs": {
44
- "url": "https://github.com/firtoz/router-toolkit/issues"
43
+ "url": "https://github.com/firtoz/fullstack-toolkit/issues"
45
44
  },
46
45
  "engines": {
47
46
  "node": ">=18.0.0"