Skip to content

Commit

Permalink
build: Update Vue to 3.4.28
Browse files Browse the repository at this point in the history
We can't update to 3.5.x yet because of
vuejs/language-tools#5069 , but for newer
versions of TypeScript to work we do need the types for the toggle event
on `<details>` to be correct, and 3.4.28 fixes that.

Change-Id: I9c90a90b58076e18fb1dc594effa73662123568d
  • Loading branch information
catrope authored and jenkins-bot committed Dec 20, 2024
1 parent e1513eb commit b4bd0c3
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 62 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ module.exports = {
],
rules: {
'vue/no-unsupported-features': [ 'error', {
version: '^3.3.9'
version: '^3.4.28'
} ],
'vue/component-name-in-template-casing': [ 'error', 'kebab-case' ],
'vue/custom-event-name-casing': [ 'error', 'kebab-case' ]
Expand Down
128 changes: 70 additions & 58 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/codex-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"prismjs": "1.29.0",
"svglint": "3.1.0",
"svgo": "3.3.2",
"vue": "3.4.27"
"vue": "3.4.28"
},
"devDependencies": {
"@types/escape-html": "1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/codex/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
],
"rules": {
"vue/no-unsupported-features": [ "error", {
"version": "^3.4.27"
"version": "^3.4.28"
} ],
"vue/component-name-in-template-casing": [ "error", "kebab-case" ]
}
Expand Down
2 changes: 1 addition & 1 deletion packages/codex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"vue-tsc": "2.0.16"
},
"peerDependencies": {
"vue": "3.4.27"
"vue": "3.4.28"
},
"dependencies": {
"@floating-ui/vue": "1.0.6",
Expand Down

0 comments on commit b4bd0c3

Please sign in to comment.