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

6
composer.lock generated
View File

@@ -475,15 +475,15 @@
}, },
{ {
"name": "wpackagist-plugin/seo-by-rank-math", "name": "wpackagist-plugin/seo-by-rank-math",
"version": "1.0.266", "version": "1.0.266.1",
"source": { "source": {
"type": "svn", "type": "svn",
"url": "https://plugins.svn.wordpress.org/seo-by-rank-math/", "url": "https://plugins.svn.wordpress.org/seo-by-rank-math/",
"reference": "tags/1.0.266" "reference": "tags/1.0.266.1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.266.zip" "url": "https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.266.1.zip"
}, },
"require": { "require": {
"composer/installers": "^1.0 || ^2.0" "composer/installers": "^1.0 || ^2.0"

View File

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

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]": { "[css]": {
"editor.defaultFormatter": "oxc.oxc-vscode", "editor.defaultFormatter": "oxc.oxc-vscode"
}, },
"[javascript]": { "[javascript]": {
"editor.defaultFormatter": "oxc.oxc-vscode", "editor.defaultFormatter": "oxc.oxc-vscode"
}, },
"[json]": { "[json]": {
"editor.defaultFormatter": "oxc.oxc-vscode", "editor.defaultFormatter": "oxc.oxc-vscode"
}, },
"[jsonc]": { "[jsonc]": {
"editor.defaultFormatter": "oxc.oxc-vscode", "editor.defaultFormatter": "oxc.oxc-vscode"
}, },
"[postcss]": { "[postcss]": {
"editor.defaultFormatter": "oxc.oxc-vscode", "editor.defaultFormatter": "oxc.oxc-vscode"
}, },
"[scss]": { "[scss]": {
"editor.defaultFormatter": "oxc.oxc-vscode", "editor.defaultFormatter": "oxc.oxc-vscode"
}, },
"[typescript]": { "[typescript]": {
"editor.defaultFormatter": "oxc.oxc-vscode", "editor.defaultFormatter": "oxc.oxc-vscode"
}, },
"[vue]": { "[vue]": {
"editor.defaultFormatter": "oxc.oxc-vscode", "editor.defaultFormatter": "oxc.oxc-vscode"
}, },
"editor.codeActionsOnSave": { "editor.codeActionsOnSave": {
"source.fixAll": "always", "source.fixAll": "always"
}, },
"editor.defaultFormatter": "oxc.oxc-vscode", "editor.defaultFormatter": "oxc.oxc-vscode",
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.quickSuggestions": { "editor.quickSuggestions": {
"strings": "on", "strings": "on"
}, }
} }

View File

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

View File

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

View File

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

File diff suppressed because it is too large Load Diff