Skip to content

Commit d4cb40a

Browse files
authored
Merge pull request #118 from udecode/changeset-release/main
2 parents 005248d + 75d8d24 commit d4cb40a

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

.changeset/pink-guests-jump.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

packages/zustand-x/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @udecode/zustood
22

3+
## 6.2.0
4+
5+
### Minor Changes
6+
7+
- [#117](https://github.com/udecode/zustand-x/pull/117) by [@felixfeng33](https://github.com/felixfeng33) – Added `createVanillaStore`: create a vanilla Zustand store in Node.js, workers, or any non-React environment. Example:
8+
9+
```ts
10+
import { createVanillaStore } from 'zustand-x/vanilla';
11+
12+
const store = createVanillaStore({ count: 0 }, { name: 'counter' });
13+
14+
store.get('count');
15+
store.set('count', 1);
16+
```
17+
318
## 6.1.2
419

520
### Patch Changes

packages/zustand-x/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zustand-x",
3-
"version": "6.1.2",
3+
"version": "6.2.0",
44
"description": "Zustand store factory for a best-in-class developer experience.",
55
"license": "MIT",
66
"homepage": "https://zustand-x.udecode.dev",

0 commit comments

Comments
 (0)