From eeb2677535ee4bfca2cbdbdd3e146f1bcf37a181 Mon Sep 17 00:00:00 2001 From: BacLuc Date: Mon, 13 Nov 2023 12:42:27 +0100 Subject: [PATCH] print: pin @vue dependencies, that they have the same version There seem to be problems on version mismatches. https://github.com/ecamp/ecamp3/pull/4046 https://github.com/ecamp/ecamp3/pull/3937 For print specifically: https://github.com/ecamp/ecamp3/pull/4056 The transitive dependencies seem to be updated in the lock file maintenance. The direct dependency in a normal package update. Even in minor versions this seems to be a problem -> we pin them together, and they get updated together. --- print/package-lock.json | 4 ++++ print/package.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/print/package-lock.json b/print/package-lock.json index 8d17a87425..5e5c39a0d9 100644 --- a/print/package-lock.json +++ b/print/package-lock.json @@ -28,7 +28,11 @@ "@nuxtjs/tailwindcss": "6.10.1", "@tailwindcss/typography": "0.5.10", "@vitest/coverage-v8": "0.34.6", + "@vue/compiler-dom": "3.3.6", "@vue/compiler-sfc": "3.3.6", + "@vue/runtime-dom": "3.3.6", + "@vue/server-renderer": "3.3.6", + "@vue/shared": "3.3.6", "@vue/test-utils": "2.4.2", "eslint": "8.54.0", "eslint-config-prettier": "9.0.0", diff --git a/print/package.json b/print/package.json index 5b945eb318..125718311d 100644 --- a/print/package.json +++ b/print/package.json @@ -37,9 +37,13 @@ "@nuxtjs/tailwindcss": "6.10.1", "@tailwindcss/typography": "0.5.10", "@vitest/coverage-v8": "0.34.6", + "@vue/compiler-dom": "3.3.6", "@vue/compiler-sfc": "3.3.6", "@vue/test-utils": "2.4.2", "eslint": "8.54.0", + "@vue/runtime-dom": "3.3.6", + "@vue/server-renderer": "3.3.6", + "@vue/shared": "3.3.6", "eslint-config-prettier": "9.0.0", "eslint-plugin-local-rules": "2.0.1", "eslint-plugin-prettier": "5.0.1",