Skip to content

Update Dependencies #1203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jun 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 0 additions & 45 deletions .eslintrc.json

This file was deleted.

1 change: 0 additions & 1 deletion app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ export default defineConfig(
cursorColor: "var(--twoslash-cursor)",
},
},
twoSlash: false,
},
toc: {
minDepth: 2,
Expand Down
57 changes: 57 additions & 0 deletions eslint.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
import eslint from "@eslint/js";
import solid from "eslint-plugin-solid";
import * as globals from "globals";
import tseslint from "typescript-eslint";
import tsParser from "@typescript-eslint/parser";

export default [
{
name: "global-ignores",
ignores: [
"**/dist/**",
"**/node_modules/**",
".github/",
".solid/",
".vinxi/",
".netlify/",
"public/",
"scripts/",
],
},
eslint.configs.recommended,
...tseslint.configs.recommended,
{
files: ["**/*.{ts,tsx}"],
languageOptions: {
parser: tsParser,
parserOptions: {
project: "tsconfig.json",
ecmaVersion: "latest",
sourceType: "module",
},
globals: {
...globals.browser,
...globals.node,
},
},
plugins: {
solid,
},
rules: {
quotes: ["error", "double"],
semi: "warn",
"@typescript-eslint/no-unused-vars": [
"error",
{
args: "all",
argsIgnorePattern: "^_",
caughtErrors: "all",
caughtErrorsIgnorePattern: "^_",
destructuredArrayIgnorePattern: "^_",
varsIgnorePattern: "^_",
ignoreRestSiblings: true,
},
],
},
},
];
62 changes: 32 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,44 +18,46 @@
"check:types": "tsc --noEmit"
},
"dependencies": {
"@kobalte/core": "^0.13.9",
"@kobalte/solidbase": "^0.0.24",
"@lunariajs/core": "^0.0.31",
"@oramacloud/client": "^1.3.15",
"@solid-primitives/event-listener": "^2.3.3",
"@solid-primitives/marker": "^0.1.0",
"@solid-primitives/media": "^2.2.9",
"@solid-primitives/platform": "^0.2.0",
"@kobalte/core": "^0.13.10",
"@kobalte/solidbase": "^0.2.16",
"@lunariajs/core": "^0.1.1",
"@oramacloud/client": "^2.1.4",
"@solid-primitives/event-listener": "^2.4.1",
"@solid-primitives/marker": "^0.2.1",
"@solid-primitives/media": "^2.3.1",
"@solid-primitives/platform": "^0.2.1",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.3",
"@solidjs/start": "^1.1.1",
"dotenv": "^16.4.5",
"glob": "^10.4.5",
"@solidjs/start": "^1.1.4",
"dotenv": "^16.5.0",
"glob": "^11.0.2",
"gray-matter": "^4.0.3",
"postcss": "^8.4.47",
"shiki": "^1.17.6",
"sitemap": "^7.1.2",
"postcss": "^8.5.5",
"shiki": "^3.6.0",
"sitemap": "^8.0.0",
"solid-heroicons": "^3.2.4",
"solid-js": "^1.9.5",
"solid-js": "^1.9.7",
"solid-list": "^0.3.0",
"solid-mdx": "^0.0.7",
"vinxi": "^0.5.3",
"zod": "^3.23.8"
"vinxi": "^0.5.7",
"zod": "^3.25.62"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@kobalte/tailwindcss": "^0.9.0",
"@orama/crawly": "^0.0.4",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-plugin-solid": "^0.13.2",
"prettier": "3.2.5",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2",
"vite": "^6.1.1"
"@orama/crawly": "^0.0.6",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^24.0.1",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.28.0",
"eslint-plugin-solid": "^0.14.5",
"globals": "^16.2.0",
"prettier": "3.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vite": "^6.3.5"
},
"engines": {
"node": ">=18",
Expand Down
Loading