Merge branch 'main' into codex/validate-json-schemas-at-build-time

This commit is contained in:
2026-01-18 12:41:10 +00:00
committed by GitHub
12 changed files with 1019 additions and 55 deletions

View File

@@ -7,9 +7,10 @@
"dev": "vite",
"kill": "fuser -k 5000/tcp",
"prebuild": "mkdir -p /tmp/dist || true",
"build": "npm run schemas:validate && tsc -b --noCheck && vite build",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"build": "tsc -b --noCheck && vite build",
"lint": "eslint . --fix && npm run lint:schemas",
"lint:check": "eslint . && npm run lint:schemas",
"lint:schemas": "node scripts/lint-json-ui-schemas.cjs",
"optimize": "vite optimize",
"preview": "vite preview --host 0.0.0.0 --port ${PORT:-80}",
"test:e2e": "playwright test",