Skip to content
Merged
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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: CI

on:
push:
branches: ['main']
branches:
- main
pull_request:
branches: ['main']
branches:
- main

jobs:
ci:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ name: Deploy to GitHub Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ['main']
branches:
- main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.4",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=v18.3.0"
"node": "^20.19.0 || >=22.12.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@stylistic/eslint-plugin": "^4.2.0",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.13.9",
"@vitest/eslint-plugin": "^1.1.36",
"@vue/eslint-config-typescript": "^14.5.0",
"eslint": "^9.21.0",
"eslint-plugin-vue": "~10.0.0",
"@eslint/compat": "^1.3.1",
"@stylistic/eslint-plugin": "^5.2.2",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22.16.5",
"@vitest/eslint-plugin": "^1.3.4",
"@vue/eslint-config-typescript": "^14.6.0",
"eslint": "^9.31.0",
"eslint-plugin-vue": "~10.3.0",
"jiti": "^2.4.2",
"lint-staged": "^15.4.3",
"npm-run-all2": "^7.0.2",
"simple-git-hooks": "^2.11.1",
"lint-staged": "^16.1.2",
"npm-run-all2": "^8.0.4",
"simple-git-hooks": "^2.13.0",
"typescript": "~5.8.0"
},
"scripts": {
Expand Down
10 changes: 5 additions & 5 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"private": true,
"type": "module",
"dependencies": {
"vue": "^3.5.13"
"vue": "^3.5.18"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.13.9",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22.16.5",
"@vue/tsconfig": "^0.7.0",
"npm-run-all2": "^7.0.2",
"npm-run-all2": "^8.0.4",
"rimraf": "^6.0.1",
"typescript": "~5.8.0",
"vitepress": "^1.6.3",
"vue-tsc": "^2.2.8"
"vue-tsc": "^3.0.4"
},
"scripts": {
"clean": "rimraf dist .vitepress/cache",
Expand Down
25 changes: 13 additions & 12 deletions packages/vue-vnode-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,24 @@
},
"devDependencies": {
"@rollup/plugin-replace": "^6.0.2",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/node22": "^22.0.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.9",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^3.0.8",
"@types/node": "^22.16.5",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"copyfiles": "^2.4.1",
"jsdom": "^26.0.0",
"npm-run-all2": "^7.0.2",
"publint": "^0.3.8",
"jsdom": "^26.1.0",
"npm-run-all2": "^8.0.4",
"publint": "^0.3.12",
"rimraf": "^6.0.1",
"typescript": "~5.8.0",
"vite": "^6.2.1",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.8",
"vue": "^3.5.13",
"vue-tsc": "^2.2.8"
"vite": "^7.0.6",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4",
"vue": "^3.5.18",
"vue-tsc": "^3.0.4"
},
"scripts": {
"clean:dist": "rimraf dist",
Expand Down
Loading