@dvashim/store 1.5.4 → 1.5.6

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 +15 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,20 @@
1
1
  # @dvashim/store
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@dvashim/store.svg?logo=npm&style=flat-square&color2=07c&label=@dvashim/store)](https://www.npmjs.com/package/@dvashim/store) [![npm downloads](https://img.shields.io/npm/dm/@dvashim/store?logo=npm&style=flat-square&color=07c)](https://www.npmjs.com/package/@dvashim/store) [![Checked with Biome](https://img.shields.io/badge/Checked_with-Biome-60a5fa?style=flat-square&logo=biome&color=07c&logoColor=fff)](https://biomejs.dev)
3
+ [![CI][ci-badge]][ci-url]
4
+ [![npm version][npm-badge]][npm-url]
5
+ [![npm downloads][downloads-badge]][npm-url]
6
+ [![License: MIT][license-badge]][license-url]
7
+ [![Checked with Biome][biome-badge]][biome-url]
8
+
9
+ [ci-badge]: https://img.shields.io/github/actions/workflow/status/dvashim/store/ci.yml?style=flat-square&logo=github&label=CI
10
+ [ci-url]: https://github.com/dvashim/store/actions/workflows/ci.yml
11
+ [npm-badge]: https://img.shields.io/npm/v/@dvashim/store.svg?logo=npm&style=flat-square&color=07c&label=@dvashim/store
12
+ [npm-url]: https://www.npmjs.com/package/@dvashim/store
13
+ [downloads-badge]: https://img.shields.io/npm/dm/@dvashim/store?logo=npm&style=flat-square&color=07c
14
+ [license-badge]: https://img.shields.io/npm/l/@dvashim/store?style=flat-square&color=07c
15
+ [license-url]: https://github.com/dvashim/store/blob/main/LICENSE
16
+ [biome-badge]: https://img.shields.io/badge/Checked_with-Biome-60a5fa?style=flat-square&logo=biome&color=07c&logoColor=fff
17
+ [biome-url]: https://biomejs.dev
4
18
 
5
19
  A minimal, lightweight React state management library built on `useSyncExternalStore`.
6
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvashim/store",
3
- "version": "1.5.4",
3
+ "version": "1.5.6",
4
4
  "description": "Yet another state management in React",
5
5
  "keywords": [
6
6
  "lightweight",
@@ -69,7 +69,7 @@
69
69
  "changeset": "changeset",
70
70
  "check": "pnpm run \"/^check:.*/\"",
71
71
  "check:biome": "biome check",
72
- "check:ts": "tsc --noemit",
72
+ "check:ts": "tsc --project tsconfig.dev.json --emitDeclarationOnly",
73
73
  "clean": "rm -rf dist *.tsbuildinfo",
74
74
  "test": "vitest run",
75
75
  "test:coverage": "vitest run --coverage",