Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
thetarnav committed Jan 15, 2024
2 parents 5b6383a + 73eac73 commit 675e39f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .changeset/olive-planets-watch.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/script-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @solid-primitives/script-loader

## 2.1.0

### Minor Changes

- 50c8ab8: fix attributes in hydration

## 2.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/script-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@solid-primitives/script-loader",
"version": "2.0.2",
"version": "2.1.0",
"description": "Primitive to load scripts dynamically",
"author": "Alex Lohr <[email protected]>",
"contributors": [
Expand Down
4 changes: 2 additions & 2 deletions packages/storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ type PersistedOptions<Type, StorageOptions> = {
// key in the storage API
name?: "...",
// JSON.stringify is the default
serializer?: (value: Type) => value.toString(),
serialize?: (value: Type) => value.toString(),
// JSON.parse is the default
deserializer?: (value: string) => Type(value),
deserialize?: (value: string) => Type(value),
};
```

Expand Down

0 comments on commit 675e39f

Please sign in to comment.