diff --git a/config/biome.base.jsonc b/config/biome.base.jsonc index 13050dd..636bec9 100644 --- a/config/biome.base.jsonc +++ b/config/biome.base.jsonc @@ -1,14 +1,25 @@ { - "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", + "$schema": "https://biomejs.dev/schemas/1.9.0/schema.json", "files": { "ignore": [".next", ".vercel", "build", "dist", "node_modules"], "ignoreUnknown": true }, + // don't lint css files for now, wait until it's more mature + "css": { + "formatter": { + "enabled": false + }, + "linter": { + "enabled": false + } + }, "linter": { "enabled": true, "rules": { "a11y": { - "noSvgWithoutTitle": "off" + "noSvgWithoutTitle": "off", + "useSemanticElements": "info", + "useFocusableInteractive": "info" }, "correctness": { "noUndeclaredVariables": "error", diff --git a/package.json b/package.json index 801373f..b685277 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@risc0/ui", - "version": "0.0.163", + "version": "0.0.166", "private": false, "sideEffects": false, "type": "module", @@ -35,8 +35,8 @@ "class-variance-authority": "0.7.1-canary.2", "clsx": "2.1.1", "cmdk": "1.0.0", - "lucide-react": "0.439.0", - "next": "15.0.0-canary.148", + "lucide-react": "0.441.0", + "next": "15.0.0-canary.152", "next-themes": "0.3.0", "radash": "12.1.0", "react-hook-form": "7.52.2", @@ -45,13 +45,13 @@ "sonner": "1.5.0", "string-ts": "2.2.0", "tailwind-merge": "2.5.2", - "tailwindcss": "3.4.10", + "tailwindcss": "3.4.11", "tailwindcss-animate": "1.0.7", - "typescript": "5.7.0-dev.20240902", + "typescript": "5.7.0-dev.20240912", "vaul": "0.9.2" }, "devDependencies": { - "@biomejs/biome": "1.8.3", + "@biomejs/biome": "1.9.0", "@ladle/react": "4.1.1", "@testing-library/jest-dom": "6.5.0", "@testing-library/react": "16.0.1", @@ -60,7 +60,7 @@ "@vitejs/plugin-react-swc": "3.7.0", "@vitest/coverage-v8": "2.0.5", "deepmerge": "4.3.1", - "happy-dom": "15.7.3", + "happy-dom": "15.7.4", "istanbul-badges-readme": "1.9.0", "npm-run-all": "4.1.5" },