Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump ods to v5.0.1 and cleanup dependencies #4940

Merged
merged 2 commits into from
Apr 9, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions .depcheckrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"ignores": [
"autoprefixer",
"core-js",
"cucumber-pretty",
"requirejs",
"nightwatch-vrt",
Expand Down
6 changes: 4 additions & 2 deletions changelog/unreleased/change-bump-ods-version
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
Change: Update owncloud Design System to v4.3.0
Change: Update owncloud Design System to v5.0.1

Lots of updates regarding accessibility topics, an updated color palette and custom CSS properties to allow for (runtime) theming.
- Lots of updates regarding accessibility topics, an updated color palette and custom CSS properties to allow for (runtime) theming.
- ODS started uses peerDependencies now, we adopted this and added the required packages
fschade marked this conversation as resolved.
Show resolved Hide resolved

https://github.com/owncloud/web/pull/4940
https://github.com/owncloud/web/pull/4925
https://github.com/owncloud/web/pull/4862
https://github.com/owncloud/web/issues/4331
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"version": "2.1.0",
"private": true,
"homepage": "https://github.com/owncloud/web",
"license": "AGPL-3.0",
"author": "ownCloud",
"workspaces": [
"packages/web-app-draw-io",
"packages/web-app-files",
Expand All @@ -20,9 +23,6 @@
"test:acceptance:ocis": "NODE_TLS_REJECT_UNAUTHORIZED=0 RUN_ON_OCIS=true cucumber-js --require-module @babel/register --require-module @babel/polyfill --require tests/acceptance/setup.js --require tests/acceptance/stepDefinitions --format node_modules/cucumber-pretty -t \"${TEST_TAGS:-not @skip and not @skipOnOCIS and not @notToImplementOnOCIS}\"",
"test:unit": "jest --coverage --config ./tests/unit/config/jest.config.js"
},
"author": "ownCloud",
"license": "AGPL-3.0",
"homepage": "https://github.com/owncloud/web",
"browserslist": [
"last 2 version",
"> .2%",
Expand Down
4 changes: 2 additions & 2 deletions packages/web-app-draw-io/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "draw-io",
"license": "AGPL-3.0",
"version": "0.0.0",
"description": "ownCloud web draw.io integration",
"license": "AGPL-3.0",
"devDependencies": {
"moment": "^2.24.0",
"luxon": "^1.22.0",
"query-string": "^6.8.3",
"vuex": "3.1.3"
}
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 @@ -13,7 +13,7 @@
"p-queue": "^6.6.2",
"query-string": "^6.8.3",
"vue": "^2.6.10",
"vue-virtual-scroller": "^1.0.0-rc.2",
"vue-gettext": "^2.1.5",
"vue2-dropzone": "^3.6.0",
"vuex": "^3.1.1"
}
Expand Down
5 changes: 5 additions & 0 deletions packages/web-pkg/.depcheckrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"ignores": [
"web-pkg"
]
}
2 changes: 1 addition & 1 deletion packages/web-pkg/src/utils/object.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isPlainObject } from 'lodash'
import isPlainObject from 'lodash-es/isPlainObject'

export const keysDeep = obj => {
const paths = []
Expand Down
13 changes: 13 additions & 0 deletions packages/web-runtime/.depcheckrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"ignores": [
"web-runtime",
"easygettext",
"luxon",
"uikit",
"vue-avatar",
"vue-datetime",
"webfontloader",
"weekstart",
"vue-inline-svg"
]
}
12 changes: 11 additions & 1 deletion packages/web-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,27 @@
"description": "ownCloud web runtime",
"license": "AGPL-3.0",
"devDependencies": {
"@vue/test-utils": "^1.1.2",
"easygettext": "^2.16.1",
"filesize": "^6.1.0",
"inert-polyfill": "^0.2.5",
"lodash-es": "^4.17.20",
"luxon": "^1.22.0",
"moment": "^2.24.0",
"oidc-client": "1.10.1",
"owncloud-design-system": "4.3.0",
"owncloud-design-system": "^5.0.1",
"owncloud-sdk": "^1.0.0-740",
"p-queue": "^6.1.1",
"tus-js-client": "^1.8.0",
"uikit": "3.5.16",
"vue": "^2.6.10",
"vue-avatar": "^2.2.0",
"vue-clipboard2": "^0.3.1",
"vue-datetime": "^1.0.0-beta.10",
"vue-drag-drop": "^1.1.4",
"vue-events": "^3.1.0",
"vue-gettext": "^2.1.5",
"vue-inline-svg": "^2.0.0",
"vue-meta": "^2.2.2",
"vue-resize": "^0.4.5",
"vue-router": "^3.1.3",
Expand All @@ -28,6 +36,8 @@
"vuex-persist": "2.0.1",
"vuex-router-sync": "^5.0.0",
"web-pkg": "*",
"webfontloader": "^1.6.28",
"weekstart": "^1.0.0",
"wicked-good-xpath": "^1.3.0"
}
}
Loading