Skip to content

Commit 3ab81cb

Browse files
committed
feat: upgrade packages, add tests
1 parent 297f013 commit 3ab81cb

20 files changed

+2474
-1150
lines changed

package.json

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"release:publish": "pnpm run lint && pnpm run test && pnpm run prepack && git push --follow-tags",
4646
"lint": "eslint .",
4747
"lint:fix": "eslint . --fix",
48-
"test": "vitest run",
48+
"test": "vitest run && vue-tsc --noEmit",
4949
"test:watch": "vitest watch",
5050
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
5151
"prepare": "husky",
@@ -54,45 +54,47 @@
5454
"docs:preview": "vitepress preview docs"
5555
},
5656
"dependencies": {
57-
"@tiptap/extension-code-block-lowlight": "^3.10.2",
58-
"@tiptap/extension-image": "^3.10.2",
59-
"@tiptap/extension-link": "^3.10.2",
60-
"@tiptap/pm": "^3.10.2",
61-
"@tiptap/starter-kit": "^3.10.2",
62-
"@tiptap/vue-3": "^3.10.2",
57+
"@tiptap/extension-code-block-lowlight": "^3.13.0",
58+
"@tiptap/extension-image": "^3.13.0",
59+
"@tiptap/extension-link": "^3.13.0",
60+
"@tiptap/pm": "^3.13.0",
61+
"@tiptap/starter-kit": "^3.13.0",
62+
"@tiptap/vue-3": "^3.13.0",
6363
"lowlight": "^3.3.0",
6464
"prosemirror-replaceattrs": "^1.0.0"
6565
},
6666
"devDependencies": {
67+
"@vue/test-utils": "^2.4.6",
68+
"happy-dom": "^15.11.7",
6769
"@nuxt/devtools": "latest",
68-
"@nuxt/eslint-config": "^1.10.0",
69-
"@nuxt/kit": "^4.2.0",
70+
"@nuxt/eslint-config": "^1.12.1",
71+
"@nuxt/kit": "^4.2.2",
7072
"@nuxt/module-builder": "^1.0.2",
71-
"@nuxt/schema": "^4.2.0",
72-
"@nuxt/test-utils": "^3.20.1",
73+
"@nuxt/schema": "^4.2.2",
74+
"@nuxt/test-utils": "^3.21.0",
7375
"@nuxtjs/tailwindcss": "^6.14.0",
74-
"@tailwindcss/typography": "^0.5.16",
75-
"@types/node": "^22.15.34",
76-
"changelogen": "^0.6.1",
77-
"eslint": "^9.30.0",
76+
"@tailwindcss/typography": "^0.5.19",
77+
"@types/node": "^25.0.3",
78+
"changelogen": "^0.6.2",
79+
"eslint": "^9.39.2",
7880
"h3-formidable": "^1.0.0",
7981
"husky": "^9.1.7",
80-
"lint-staged": "^16.2.6",
81-
"nuxt": "^4.2.0",
82-
"prettier": "^3.6.2",
83-
"sass": "^1.89.2",
84-
"typescript": "^5.8.3",
85-
"vitepress": "^1.6.3",
86-
"vitest": "^3.2.4",
87-
"vue-tsc": "~2.2.10"
82+
"lint-staged": "^16.2.7",
83+
"nuxt": "^4.2.2",
84+
"prettier": "^3.7.4",
85+
"sass": "^1.97.0",
86+
"typescript": "^5.9.3",
87+
"vitepress": "^1.6.4",
88+
"vitest": "^3.2.0",
89+
"vue-tsc": "~3.1.8"
8890
},
8991
"publishConfig": {
9092
"access": "public"
9193
},
92-
"packageManager": "pnpm@10.10.0",
94+
"packageManager": "pnpm@10.26.0",
9395
"lint-staged": {
9496
"*.{ts,tsx,vue,js,jsx,mjs,cjs}": [
9597
"eslint --fix"
9698
]
9799
}
98-
}
100+
}

0 commit comments

Comments
 (0)