Compare commits

..

3 Commits

Author SHA1 Message Date
52a97f2a97 fix: update ESLint config to ignore additional directories and files 2026-01-28 21:10:06 +02:00
6c141b71da RELEASING: Releasing 1 package(s)
Releases:
  @warkypublic/oranguru@0.0.30

[skip ci]
2026-01-28 21:05:16 +02:00
89fed20f70 docs(changeset): fix: update GridlerStore setState type to accept full state values 2026-01-28 21:05:11 +02:00
3 changed files with 8 additions and 4 deletions

View File

@@ -1,5 +1,11 @@
# @warkypublic/zustandsyncstore
## 0.0.30
### Patch Changes
- 89fed20: fix: update GridlerStore setState type to accept full state values
## 0.0.29
### Patch Changes

View File

@@ -34,7 +34,7 @@ const config = defineConfig([
'@typescript-eslint/ban-ts-comment': 'off',
},
},
{ignores: ['dist/**']},
{ignores: ['dist/**','node_modules/**','vite.config.*','eslint.config.*' ]},
]);
export default config;

View File

@@ -1,18 +1,16 @@
{
"name": "@warkypublic/oranguru",
"author": "Warky Devs",
"version": "0.0.29",
"version": "0.0.30",
"type": "module",
"types": "./dist/lib.d.ts",
"main": "./dist/lib.cjs.js",
"module": "./dist/lib.es.js",
"exports": {
".": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.es.js",
"require": "./dist/lib.cjs.js"
},
"./oranguru.css": "./dist/oranguru.css",
"./package.json": "./package.json"