Skip to content

Commit c827790

Browse files
authored
Merge pull request #888 from opencloud-eu/renovate/dev-dependencies
chore(deps): update devdependencies (non-major)
2 parents 44e7ddc + bd91d76 commit c827790

File tree

6 files changed

+530
-517
lines changed

6 files changed

+530
-517
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
],
3636
"devDependencies": {
3737
"@axe-core/playwright": "^4.10.2",
38-
"@babel/core": "7.27.7",
38+
"@babel/core": "7.28.0",
3939
"@babel/polyfill": "7.12.1",
40-
"@babel/preset-env": "7.27.2",
40+
"@babel/preset-env": "7.28.0",
4141
"@babel/register": "7.27.1",
4242
"@cucumber/cucumber": "11.3.0",
4343
"@cucumber/messages": "27.2.0",
@@ -75,7 +75,7 @@
7575
"tslib": "2.8.1",
7676
"typescript": "5.8.3",
7777
"vite-plugin-environment": "^1.1.3",
78-
"vite-plugin-node-polyfills": "0.23.0",
78+
"vite-plugin-node-polyfills": "0.24.0",
7979
"vite-plugin-static-copy": "^3.0.0",
8080
"vite-plugin-treat-umd-as-commonjs": "0.1.4",
8181
"vite": "^6.1.0",

packages/design-system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
"url": "^0.11.3",
131131
"vite": "^6.0.9",
132132
"vite-plugin-dts": "^4.2.3",
133-
"vite-plugin-node-polyfills": "^0.23.0",
133+
"vite-plugin-node-polyfills": "^0.24.0",
134134
"vitepress": "^1.6.3",
135135
"yaml": "^2.3.4"
136136
}

packages/web-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"@vitejs/plugin-vue": "6.0.0",
9898
"clean-publish": "5.2.2",
9999
"vite-plugin-dts": "4.5.4",
100-
"vite-plugin-node-polyfills": "0.23.0",
100+
"vite-plugin-node-polyfills": "0.24.0",
101101
"vite": "^6.1.0"
102102
}
103103
}

packages/web-pkg/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,6 @@
8181
"@vitest/web-worker": "^3.0.5",
8282
"clean-publish": "5.2.2",
8383
"vite-plugin-dts": "4.5.4",
84-
"vite-plugin-node-polyfills": "0.23.0"
84+
"vite-plugin-node-polyfills": "0.24.0"
8585
}
8686
}

packages/web-runtime/tests/unit/components/UploadInfo.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ describe('UploadInfo component', () => {
5454
it('should show that an upload failed', async () => {
5555
const { wrapper } = getShallowWrapper()
5656
wrapper.vm.showInfo = true
57-
;(wrapper.vm.errors = { '1': new HttpError('', undefined) }), await nextTick()
57+
;((wrapper.vm.errors = { '1': new HttpError('', undefined) }), await nextTick())
5858

5959
const uploadTitle = wrapper.find(selectors.title).text()
6060
expect(uploadTitle).toBe('Upload failed')
@@ -163,7 +163,7 @@ describe('UploadInfo component', () => {
163163
const { wrapper } = getShallowWrapper()
164164
wrapper.vm.showInfo = true
165165
wrapper.vm.infoExpanded = true
166-
;(wrapper.vm.uploads = {
166+
;((wrapper.vm.uploads = {
167167
'1': {
168168
name: 'file',
169169
path: '/',
@@ -186,7 +186,7 @@ describe('UploadInfo component', () => {
186186
(wrapper.vm.errors = {
187187
1: new HttpError('', undefined),
188188
2: new HttpError('', undefined)
189-
})
189+
}))
190190
await nextTick()
191191

192192
const info = wrapper.find(selectors.info.items)

0 commit comments

Comments
 (0)