3 Commits

Author SHA1 Message Date
Hein
812a5f4626 RELEASING: Releasing 1 package(s)
Releases:
  @warkypublic/oranguru@0.0.31

[skip ci]
2026-02-02 13:26:29 +02:00
Hein
ac6dcbffec docs(changeset): Error Boundry 2026-02-02 13:26:26 +02:00
Hein
7257a86376 chore(tsconfig): update TypeScript configurations 2026-02-02 13:25:54 +02:00
6 changed files with 686 additions and 773 deletions

View File

@@ -1,5 +1,11 @@
# @warkypublic/zustandsyncstore
## 0.0.31
### Patch Changes
- ac6dcbf: Error Boundry
## 0.0.30
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@warkypublic/oranguru",
"author": "Warky Devs",
"version": "0.0.30",
"version": "0.0.31",
"type": "module",
"types": "./dist/lib.d.ts",
"main": "./dist/lib.cjs.js",
@@ -42,40 +42,43 @@
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@storybook/react-vite": "^10.2.1",
"@microsoft/api-extractor": "^7.56.0",
"@storybook/react-vite": "^10.2.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.1.0",
"@types/jsdom": "~27.0.0",
"@types/node": "^25.2.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/use-sync-external-store": "~1.5.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react-swc": "^4.2.2",
"eslint": "^9.38.0",
"@vitejs/plugin-react-swc": "^4.2.3",
"eslint": "^9.39.2",
"eslint-config-mantine": "^4.0.3",
"eslint-plugin-perfectionist": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-storybook": "^9.1.15",
"eslint-plugin-react-refresh": "^0.5.0",
"eslint-plugin-storybook": "^10.2.3",
"global": "^4.4.0",
"globals": "^17.2.0",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"jsdom": "^27.4.0",
"jsdom": "^28.0.0",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.6.2",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"storybook": "^9.1.15",
"storybook": "^10.2.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "^7.1.12",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.3"
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@glideapps/glide-data-grid": "^6.0.3",
@@ -87,11 +90,11 @@
"@tanstack/react-query": "^5.90.5",
"@warkypublic/artemis-kit": "^1.0.10",
"@warkypublic/zustandsyncstore": "^0.0.4",
"idb-keyval": "^6.2.2",
"immer": "^10.1.3",
"react": ">= 19.0.0",
"react-dom": ">= 19.0.0",
"react-hook-form": "^7.71.0",
"idb-keyval": "^6.2.2",
"use-sync-external-store": ">= 1.4.0",
"zustand": ">= 5.0.0"
}

1407
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -4,7 +4,8 @@
"target": "es6",
"useDefineForClassFields": true,
"types": [
"./global.d.ts"
"./global.d.ts",
"node"
],
"lib": [
"ES2016",
@@ -31,7 +32,8 @@
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
"noUncheckedSideEffectImports": true,
},
"include": [
"src",

View File

@@ -19,7 +19,8 @@
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
"noUncheckedSideEffectImports": true,
"types": ["node"]
},
"include": [
"vite.config.ts"

View File

@@ -21,10 +21,10 @@ export default defineConfig({
tsconfigPath: './tsconfig.app.json',
compilerOptions: {
noEmit: false,
skipLibCheck: true,
emitDeclarationOnly: true,
},
}),
],
publicDir: 'public',
build: {