Skip to content

Commit c7e3e95

Browse files
committed
chore: bump deps
1 parent f6d61ba commit c7e3e95

File tree

10 files changed

+4999
-5984
lines changed

10 files changed

+4999
-5984
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

eslint.config.mjs

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { createConfigForNuxt } from "@nuxt/eslint-config/flat";
2+
3+
export default createConfigForNuxt({
4+
features: {
5+
tooling: true,
6+
},
7+
// options here
8+
})
9+
.override("nuxt/vue/rules", {
10+
rules: {
11+
"vue/multi-word-component-names": "off",
12+
"vue/require-default-prop": "off",
13+
"vue/no-v-html": "off",
14+
},
15+
ignores: ["dist", "node_modules", ".nuxt"],
16+
})
17+
.override("nuxt/typescript/rules", {
18+
rules: {
19+
"@typescript-eslint/no-unused-vars": "off",
20+
"@typescript-eslint/no-explicit-any": "off",
21+
"@typescript-eslint/no-invalid-void-type": "off",
22+
},
23+
});

package-lock.json

Lines changed: 2781 additions & 3463 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,22 @@
3232
"test:watch": "vitest watch"
3333
},
3434
"dependencies": {
35-
"@nuxt/kit": "^3.13.1",
35+
"@nuxt/kit": "^3.14.1592",
3636
"@types/rellax": "^1.7.7",
3737
"rellax": "^1.12.1"
3838
},
3939
"devDependencies": {
40-
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
41-
"@nuxt/eslint-config": "^0.5.6",
42-
"@nuxt/module-builder": "^0.8.3",
43-
"@nuxt/schema": "^3.13.1",
44-
"@nuxt/test-utils": "^3.14.1",
45-
"@types/node": "^22.5.4",
46-
"changelogen": "^0.5.5",
47-
"eslint": "^9.10.0",
48-
"nuxt": "^3.13.1",
40+
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
41+
"@nuxt/eslint-config": "^0.7.1",
42+
"@nuxt/module-builder": "^0.8.4",
43+
"@nuxt/schema": "^3.14.1592",
44+
"@nuxt/test-utils": "^3.14.4",
45+
"@types/node": "^22.9.3",
46+
"changelogen": "^0.5.7",
47+
"eslint": "^9.15.0",
48+
"nuxt": "^3.14.1592",
4949
"prettier": "^3.3.3",
50-
"prettier-plugin-tailwindcss": "^0.6.6",
51-
"vitest": "^2.0.5"
52-
},
53-
"overrides": {
54-
"nitropack": "2.9.6"
50+
"prettier-plugin-tailwindcss": "^0.6.9",
51+
"vitest": "^2.1.5"
5552
}
5653
}

playground/nuxt.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export default defineNuxtConfig({
2222
devtools: { enabled: true },
2323
tailwindcss: { exposeConfig: true },
2424
colorMode: { classSuffix: "", preference: "dark", fallback: "dark" },
25-
typescript: { shim: false },
2625

2726
googleFonts: {
2827
display: "swap",
@@ -105,4 +104,4 @@ export default defineNuxtConfig({
105104
},
106105

107106
compatibilityDate: "2024-07-09",
108-
});
107+
});

0 commit comments

Comments
 (0)