chore: update deps and plugins

This commit is contained in:
2026-03-26 09:33:29 -04:00
parent 3b72a16f86
commit f9ebc3ce54
8 changed files with 1049 additions and 1017 deletions

View File

@@ -1,19 +1,17 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"experimentalSortImports": {
"sortImports": {
"newlinesBetween": false,
"groups": [
["side_effect"],
["builtin"],
["external", "type-external"],
["internal", "type-internal"],
["parent", "type-parent"],
["sibling", "type-sibling"],
["index", "type-index"]
["value-builtin", "value-external"],
["value-internal", "value-parent", "value-sibling", "value-index"],
{ "newlinesBetween": true },
"type-import",
"unknown"
]
},
"experimentalTailwindcss": {
"attributes": ["class"],
"functions": ["tv"],
"stylesheet": "./app/assets/css/_main.css"
"sortTailwindcss": {
"stylesheet": "./app/assets/css/_main.css",
"functions": ["tv"]
}
}

View File

@@ -1,3 +1,3 @@
{
"recommendations": ["graphql.vscode-graphql", "oxc.oxc-vscode"],
"recommendations": ["graphql.vscode-graphql", "oxc.oxc-vscode"]
}

View File

@@ -1,34 +1,34 @@
{
"[css]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[json]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[postcss]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[scss]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[vue]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.fixAll": "always"
},
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.formatOnSave": true,
"editor.quickSuggestions": {
"strings": "on",
},
"strings": "on"
}
}

View File

@@ -3,16 +3,16 @@
@apply font-bold tracking-tight;
}
@utility heading-1 {
@apply heading-base text-4xl;
@apply text-4xl heading-base;
}
@utility heading-2 {
@apply heading-base text-3xl;
@apply text-3xl heading-base;
}
@utility heading-3 {
@apply heading-base text-2xl;
@apply text-2xl heading-base;
}
@utility heading-4 {
@apply heading-base text-xl;
@apply text-xl heading-base;
}
/* Paragraph styles */

View File

@@ -1,5 +1,6 @@
<script setup lang="ts">
import type { NodePageFragment } from "#graphql/types";
defineProps<{ node: NodePageFragment }>();
</script>

View File

@@ -16,20 +16,21 @@
"release": "oxlint . && oxfmt --check . && nuxt typecheck && changelogen --noAuthors --release --push"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.99",
"@lewebsimple/nuxt-graphql": "^0.7.5",
"@nuxt/ui": "^4.5.1",
"@nuxt/ui": "^4.6.0",
"nuxt": "^4.4.2",
"nuxt-svgo": "^4.2.6",
"tailwindcss": "^4.2.2",
"vue": "^3.5.30",
"vue-router": "^5.0.3"
"vue": "^3.5.31",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@types/node": "^25.5.0",
"changelogen": "^0.6.2",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"typescript": "^5.9.3",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"typescript": "^6.0.2",
"vue-tsc": "^3.2.6"
},
"pnpm": {

File diff suppressed because it is too large Load Diff