Skip to content
Open
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
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
import withNuxt from "./.nuxt/eslint.config.mjs";
import withNuxt from ".nuxt/eslint.config.mjs";
Copy link

Copilot AI Nov 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The import path has been changed from ./.nuxt/eslint.config.mjs to .nuxt/eslint.config.mjs. While both paths should work in most cases, the ./ prefix is more explicit and is a common best practice for relative imports. However, this change is likely intentional as part of the Nuxt 4 upgrade and should work correctly.

Suggested change
import withNuxt from ".nuxt/eslint.config.mjs";
import withNuxt from "./.nuxt/eslint.config.mjs";

Copilot uses AI. Check for mistakes.

export default withNuxt([
{
Expand Down
47 changes: 25 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,34 +15,37 @@
"lint:report": "eslint --output-file=eslint_report.json --format json ."
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@nuxt/devtools": "^1.7.0",
"@nuxt/eslint": "^0.7.6",
"@nuxtjs/robots": "^5.5.5",
"@nuxtjs/sitemap": "7.0.0",
"@eslint/js": "^9.39.1",
"@nuxt/devtools": "^3.1.0",
"@nuxt/eslint": "^1.10.0",
"@nuxtjs/robots": "^5.5.6",
"@nuxtjs/sitemap": "7.4.7",
"@nuxtjs/tailwindcss": "^6.14.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^9.1.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^9.33.0",
"globals": "^15.15.0",
"nuxt": "^3.19.3",
"eslint-plugin-vue": "^10.6.0",
"globals": "^16.5.0",
"nuxt": "^4.2.1",
"nuxt-posthog": "^1.6.3",
"nuxt-schema-org": "^4.1.3",
"nuxt-schema-org": "^5.0.9",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"typescript-eslint": "^8.46.1",
"vue": "^3.5.22",
"vue-router": "^4.6.2"
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript-eslint": "^8.48.0",
"vue": "^3.5.25",
"vue-router": "^4.6.3"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/vue-fontawesome": "^3.1.2",
"@vueuse/core": "^12.8.2",
"@vueuse/nuxt": "^12.8.2",
"posthog-js": "^1.275.3"
"@vueuse/core": "^14.0.0",
"@vueuse/nuxt": "^14.0.0",
"posthog-js": "^1.298.0"
},
"packageManager": "pnpm@10.23.0"
"packageManager": "pnpm@10.23.0",
"engines": {
"node": "^22 || ^24 || ^25"
Copy link

Copilot AI Nov 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The node engine requirement has been added as "^22 || ^24 || ^25". However, Nuxt 4 officially requires Node.js version ^20.19.0 or >=22.12.0 according to the lock file changes. The specified range excludes Node 20 and 23, which may cause issues for users on those versions. Consider using "^20.19.0 || >=22.12.0" to align with Nuxt 4's requirements.

Suggested change
"node": "^22 || ^24 || ^25"
"node": "^20.19.0 || >=22.12.0"

Copilot uses AI. Check for mistakes.
}
}
1,496 changes: 413 additions & 1,083 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading