@tuwaio/pulsar-core 0.1.8 → 0.1.9
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.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,17 +30,17 @@ This package exports one primary factory function: `createPulsarStore`.
|
|
|
30
30
|
|
|
31
31
|
## 💾 Installation
|
|
32
32
|
|
|
33
|
-
This package requires `zustand` and `
|
|
33
|
+
This package requires `zustand`, `immer` and `dayjs` as peer dependencies. You must install them alongside `@tuwaio/pulsar-core`.
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
# Using pnpm
|
|
37
|
-
pnpm add @tuwaio/pulsar-core zustand immer
|
|
37
|
+
pnpm add @tuwaio/pulsar-core zustand immer dayjs
|
|
38
38
|
|
|
39
39
|
# Using npm
|
|
40
|
-
npm install @tuwaio/pulsar-core zustand immer
|
|
40
|
+
npm install @tuwaio/pulsar-core zustand immer dayjs
|
|
41
41
|
|
|
42
42
|
# Using yarn
|
|
43
|
-
yarn add @tuwaio/pulsar-core zustand immer
|
|
43
|
+
yarn add @tuwaio/pulsar-core zustand immer dayjs
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
---
|