Skip to content

Commit

Permalink
Update vue-concurrency and bump required node version (plus types) to…
Browse files Browse the repository at this point in the history
… sort out peer dependency warnings (#10893)

* Update vue-concurrency to sort out peer dependency warnings

* Raise required node version to >=18, bump @types/node accordingly (sorts out more peerdeps also)
  • Loading branch information
pascalwengerter authored May 14, 2024
1 parent 5c4302a commit 7d9a27b
Show file tree
Hide file tree
Showing 10 changed files with 119 additions and 728 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"@rollup/plugin-inject": "5.0.3",
"@types/glob": "8.1.0",
"@types/lodash-es": "4.17.7",
"@types/node": "16.18.30",
"@types/node": "18.11.9",
"@types/node-fetch": "2.6.10",
"@vitejs/plugin-vue": "5.0.3",
"@vitest/coverage-v8": "1.5.0",
Expand Down Expand Up @@ -112,7 +112,7 @@
"wait-for-expect": "3.0.2"
},
"engines": {
"node": ">=16"
"node": ">=18"
},
"packageManager": "[email protected]",
"volta": {
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-admin-settings/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"lodash-es": "4.17.21",
"pinia": "2.1.7",
"uuid": "9.0.1",
"vue-concurrency": "5.0.0",
"vue-concurrency": "5.0.1",
"web-app-admin-settings": "workspace:*"
}
}
2 changes: 1 addition & 1 deletion packages/web-app-external/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@ownclouders/web-client": "workspace:*",
"@ownclouders/web-pkg": "workspace:*",
"uuid": "9.0.1",
"vue-concurrency": "5.0.0",
"vue-concurrency": "5.0.1",
"vue3-gettext": "2.4.0",
"zod": "3.22.4"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-files/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"pinia": "2.1.7",
"qs": "6.11.2",
"uuid": "9.0.1",
"vue-concurrency": "5.0.0",
"vue-concurrency": "5.0.1",
"vue-router": "4.2.5",
"vue3-gettext": "2.4.0",
"web-app-files": "workspace:*",
Expand Down
6 changes: 3 additions & 3 deletions packages/web-app-files/tests/unit/HandleUpload.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ describe('HandleUpload', () => {
mock<UppyResource>({
name: 'name',
meta: { spaceId: '1', routeName: locationSpacesGeneric.name as string },
data: { size }
data: { size } as Blob
})
])
expect(result).toBe(quotaExceeded)
Expand All @@ -181,7 +181,7 @@ describe('HandleUpload', () => {
mock<UppyResource>({
name: 'name',
meta: { spaceId: '1', routeName: locationSpacesGeneric.name as string },
data: { size }
data: { size } as Blob
})
])
expect(result).toBeFalsy()
Expand All @@ -200,7 +200,7 @@ describe('HandleUpload', () => {
mock<UppyResource>({
name: 'name',
meta: { spaceId: '1', routeName: locationSpacesGeneric.name as string },
data: { size }
data: { size } as Blob
})
])
expect(result).toBeFalsy()
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-ocm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"email-validator": "^2.0.4",
"fuse.js": "6.6.2",
"lodash-es": "4.17.21",
"vue-concurrency": "5.0.0",
"vue-concurrency": "5.0.1",
"uuid": "9.0.1",
"zod": "3.22.4"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-text-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"peerDependencies": {
"@ownclouders/web-client": "workspace:*",
"@ownclouders/web-pkg": "workspace:*",
"vue-concurrency": "5.0.0",
"vue-concurrency": "5.0.1",
"vue3-gettext": "2.4.0"
}
}
2 changes: 1 addition & 1 deletion packages/web-pkg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"qs": "6.11.2",
"semver": "7.5.4",
"uuid": "9.0.1",
"vue-concurrency": "5.0.0",
"vue-concurrency": "5.0.1",
"vue-router": "4.2.5",
"vue3-gettext": "2.4.0",
"vitest": "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/web-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"utf8": "^3.0.0",
"uuid": "9.0.1",
"vue": "3.4.21",
"vue-concurrency": "5.0.0",
"vue-concurrency": "5.0.1",
"vue-inline-svg": "3.1.2",
"vue-router": "4.2.5",
"vue-select": "4.0.0-beta.6",
Expand Down
Loading

0 comments on commit 7d9a27b

Please sign in to comment.