@dvashim/store 1.5.4 → 1.5.5

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 +18 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,23 @@
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
+ [![TypeScript][ts-badge]][ts-url]
8
+ [![Checked with Biome][biome-badge]][biome-url]
9
+
10
+ [ci-badge]: https://img.shields.io/github/actions/workflow/status/dvashim/store/ci.yml?branch=main&style=flat-square&logo=github&label=CI
11
+ [ci-url]: https://github.com/dvashim/store/actions/workflows/ci.yml
12
+ [npm-badge]: https://img.shields.io/npm/v/@dvashim/store.svg?logo=npm&style=flat-square&color=07c&label=@dvashim/store
13
+ [npm-url]: https://www.npmjs.com/package/@dvashim/store
14
+ [downloads-badge]: https://img.shields.io/npm/dm/@dvashim/store?logo=npm&style=flat-square&color=07c
15
+ [license-badge]: https://img.shields.io/npm/l/@dvashim/store?style=flat-square&color=07c
16
+ [license-url]: https://github.com/dvashim/store/blob/main/LICENSE
17
+ [ts-badge]: https://img.shields.io/badge/TypeScript-07c?style=flat-square&logo=typescript&logoColor=fff
18
+ [ts-url]: https://www.typescriptlang.org/
19
+ [biome-badge]: https://img.shields.io/badge/Checked_with-Biome-60a5fa?style=flat-square&logo=biome&color=07c&logoColor=fff
20
+ [biome-url]: https://biomejs.dev
4
21
 
5
22
  A minimal, lightweight React state management library built on `useSyncExternalStore`.
6
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvashim/store",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
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",