-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: type incompatibility with json/serializable types (#55)
- Loading branch information
1 parent
7f2a681
commit fa5ee22
Showing
4 changed files
with
41 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
'storage-box': patch | ||
--- | ||
|
||
fix: Type incompatibility with json/serializable types | ||
|
||
Use `Jsonify<T>` if you need to transform a type to a JSON-compatible type | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,10 +47,11 @@ | |
"ci:publish": "changeset publish", | ||
"prepublishOnly": "pnpm test && pnpm lint && pnpm format:check && pnpm build" | ||
}, | ||
"packageManager": "[email protected].8", | ||
"packageManager": "[email protected].9", | ||
"dependencies": { | ||
"@msgpack/msgpack": "3.0.0-beta2", | ||
"debounce": "^2.1.0" | ||
"debounce": "^2.1.0", | ||
"type-fest": "^4.26.0" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.27.7", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters