Skip to content

Commit 7079417

Browse files
jedrazbclaude
andauthored
chore(deps-dev): batch update dev dependencies (#619)
Combines the 6 stuck dependabot PRs (#604, #605, #606, #607, #608, #609) into one PR with a refreshed bun.lock so CI's --frozen-lockfile passes. - @microsoft/tsdoc ^0.15.0 -> ^0.16.0 - @vitejs/plugin-react ^5.1.2 -> ^6.0.2 - vue-tsc ^2.0.0 -> ^3.3.0 (packages/agents) - @nuxt/schema ^3.14.0 -> ^4.4.6 (packages/nuxt) - nuxt ^3.14.0 -> ^4.4.6 (packages/nuxt + examples/nuxt) Drop unused rootEl template ref in AgentChatLog.vue — vue-tsc 3.x's stricter unused-locals check flagged it. The ref was bound but never read in script. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 52e375b commit 7079417

6 files changed

Lines changed: 297 additions & 157 deletions

File tree

bun.lock

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

examples/nuxt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"vue": "^3.5.0"
1515
},
1616
"devDependencies": {
17-
"nuxt": "^3.14.0",
17+
"nuxt": "^4.4.6",
1818
"typescript": "^6.0.3"
1919
}
2020
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@
7777
"@changesets/cli": "^2.30.0",
7878
"@happy-dom/global-registrator": "^20.8.3",
7979
"@microsoft/api-extractor": "^7.50.0",
80-
"@microsoft/tsdoc": "^0.15.0",
80+
"@microsoft/tsdoc": "^0.16.0",
8181
"@playwright/test": "^1.58.1",
8282
"@testing-library/react": "^16.0.0",
8383
"@types/bun": "^1.0.0",
8484
"@types/react": "19.2.14",
8585
"@types/react-dom": "19.2.3",
8686
"@typescript-eslint/eslint-plugin": "^8.54.0",
8787
"@typescript-eslint/parser": "^8.54.0",
88-
"@vitejs/plugin-react": "^5.1.2",
88+
"@vitejs/plugin-react": "^6.0.2",
8989
"@vitejs/plugin-vue": "^6.0.4",
9090
"autoprefixer": "^10.4.17",
9191
"class-variance-authority": "^0.7.0",

packages/agents/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"vite": "^8.0.10",
111111
"vite-plugin-dts": "^5.0.0",
112112
"vue": "^3.4.0",
113-
"vue-tsc": "^2.0.0"
113+
"vue-tsc": "^3.3.0"
114114
},
115115
"files": [
116116
"dist",

packages/agents/src/vue/components/AgentChatLog.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<div
88
:class="['ep-agent-chat-log', className]"
99
:style="rootStyle"
10-
ref="rootEl"
1110
role="log"
1211
aria-live="polite"
1312
aria-atomic="false"
@@ -73,7 +72,6 @@ const props = withDefaults(defineProps<AgentChatLogProps>(), {
7372
className: '',
7473
});
7574
76-
const rootEl = ref<HTMLDivElement | null>(null);
7775
const endEl = ref<HTMLDivElement | null>(null);
7876
7977
const isEmpty = computed(

packages/nuxt/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
},
4545
"devDependencies": {
4646
"@nuxt/module-builder": "^1.0.0",
47-
"@nuxt/schema": "^3.14.0",
48-
"nuxt": "^3.14.0",
47+
"@nuxt/schema": "^4.4.6",
48+
"nuxt": "^4.4.6",
4949
"vue": "^3.5.0"
5050
},
5151
"keywords": [

0 commit comments

Comments
 (0)