Skip to content

Commit 8539bcc

Browse files
committed
chore: upgrade packages and fix lint
1 parent 7b9ef81 commit 8539bcc

File tree

6 files changed

+3611
-1700
lines changed

6 files changed

+3611
-1700
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ charset = utf-8
88
trim_trailing_whitespace = true
99
insert_final_newline = true
1010
quote_type = single
11+
semi = false
1112

1213
[*.md]
1314
trim_trailing_whitespace = false

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib"
3+
}

eslint.config.js

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
// @ts-check
22
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'
33

4+
const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended')
5+
46
// Run `npx @eslint/config-inspector` to inspect the resolved config interactively
57
export default createConfigForNuxt({
6-
features: {
7-
// Rules for module authors
8-
tooling: true,
9-
// Rules for formatting
10-
stylistic: true,
11-
},
12-
dirs: {
13-
src: ['./playground'],
14-
},
15-
})
16-
.append
17-
// your custom flat config here...
18-
()
8+
features: {
9+
// Rules for module authors
10+
tooling: true,
11+
// Rules for formatting
12+
stylistic: true,
13+
},
14+
dirs: {
15+
src: ['./playground'],
16+
},
17+
}).append(
18+
// your custom flat config here...
19+
eslintPluginPrettierRecommended
20+
)

package.json

Lines changed: 28 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -48,39 +48,42 @@
4848
"docs:preview": "vitepress preview docs"
4949
},
5050
"dependencies": {
51-
"@nuxt/kit": "^3.13.1",
52-
"@tiptap/extension-code-block-lowlight": "^2.6.6",
53-
"@tiptap/extension-image": "^2.6.6",
54-
"@tiptap/extension-link": "^2.6.6",
55-
"@tiptap/pm": "^2.6.6",
56-
"@tiptap/starter-kit": "^2.6.6",
57-
"@tiptap/vue-3": "^2.6.6",
51+
"@nuxt/kit": "^3.14.1592",
52+
"@tiptap/extension-code-block-lowlight": "^2.10.1",
53+
"@tiptap/extension-image": "^2.10.1",
54+
"@tiptap/extension-link": "^2.10.1",
55+
"@tiptap/pm": "^2.10.1",
56+
"@tiptap/starter-kit": "^2.10.1",
57+
"@tiptap/vue-3": "^2.10.1",
5858
"lowlight": "^3.1.0",
5959
"prosemirror-replaceattrs": "^1.0.0"
6060
},
6161
"devDependencies": {
6262
"@nuxt/devtools": "latest",
63-
"@nuxt/eslint-config": "^0.5.6",
64-
"@nuxt/module-builder": "^0.8.3",
65-
"@nuxt/schema": "^3.13.1",
66-
"@nuxt/test-utils": "^3.14.1",
67-
"@nuxtjs/tailwindcss": "^6.12.1",
68-
"@primevue/nuxt-module": "^4.0.5",
69-
"@primevue/themes": "^4.0.5",
63+
"@nuxt/eslint-config": "^0.7.1",
64+
"@nuxt/module-builder": "^0.8.4",
65+
"@nuxt/schema": "^3.14.1592",
66+
"@nuxt/test-utils": "^3.14.4",
67+
"@nuxtjs/tailwindcss": "^6.12.2",
68+
"@primevue/nuxt-module": "^4.2.2",
69+
"@primevue/themes": "^4.2.2",
7070
"@tailwindcss/typography": "^0.5.15",
71-
"@types/node": "^22.5.4",
72-
"changelogen": "^0.5.5",
73-
"eslint": "^9.10.0",
71+
"@types/node": "^22.9.1",
72+
"changelogen": "^0.5.7",
73+
"eslint": "^9.15.0",
74+
"eslint-config-prettier": "^9.1.0",
75+
"eslint-plugin-prettier": "^5.2.1",
7476
"h3-formidable": "^1.0.0",
75-
"nuxt": "^3.13.1",
77+
"nuxt": "^3.14.1592",
78+
"prettier": "^3.3.3",
7679
"primeicons": "^7.0.0",
77-
"primevue": "^4.0.5",
78-
"sass": "^1.78.0",
80+
"primevue": "^4.2.2",
81+
"sass": "^1.81.0",
7982
"tailwindcss-primeui": "^0.3.4",
80-
"typescript": "^5.5.4",
81-
"vitepress": "^1.3.4",
82-
"vitest": "^2.0.5",
83-
"vue-tsc": "^2.1.6"
83+
"typescript": "^5.6.3",
84+
"vitepress": "^1.5.0",
85+
"vitest": "^2.1.5",
86+
"vue-tsc": "^2.1.10"
8487
},
8588
"resolutions": {
8689
"rimraf": "latest"
@@ -91,5 +94,5 @@
9194
"publishConfig": {
9295
"access": "public"
9396
},
94-
"packageManager": "pnpm@9.9.0"
97+
"packageManager": "pnpm@9.14.2"
9598
}

0 commit comments

Comments
 (0)