@declarion/react 0.6.2 → 0.6.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@declarion/react",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "description": "React SDK for Declarion, the schema-driven business apps platform.",
@@ -66,6 +66,7 @@
66
66
  "zustand": "^5.0.14"
67
67
  },
68
68
  "devDependencies": {
69
+ "publint": "^0.3.0",
69
70
  "@axe-core/react": "^4.11.3",
70
71
  "@tailwindcss/typography": "^0.5.19",
71
72
  "@tailwindcss/vite": "^4.3.0",
@@ -93,9 +94,10 @@
93
94
  "scripts": {
94
95
  "dev": "vite",
95
96
  "build": "tsc -p tsconfig.app.json --noEmit && vite build",
96
- "build:lib": "vite build --config vite.lib.config.ts && vite build --config vite.plugin.config.ts && tsc -p tsconfig.lib.json && tsc-alias -p tsconfig.lib.json && pnpm run check:bundle",
97
+ "build:lib": "vite build --config vite.lib.config.ts && vite build --config vite.plugin.config.ts && tsc -p tsconfig.lib.json && tsc-alias -p tsconfig.lib.json && pnpm run check:bundle && pnpm run check:pkg",
97
98
  "check:bundle": "node scripts/check-eager-bundle.mjs",
98
- "lint": "tsc --noEmit && eslint src",
99
+ "check:pkg": "publint run",
100
+ "lint": "tsc --noEmit && eslint src --max-warnings=0",
99
101
  "test": "vitest run",
100
102
  "preview": "vite preview"
101
103
  }