From 2166ef72bb0ddbd86fa1b4d9b38687688fbeca84 Mon Sep 17 00:00:00 2001 From: Adrian Winterstein Date: Sun, 29 Jun 2025 21:17:19 +0200 Subject: [PATCH] Added rollup dependency explicitly for both architectures. This is needed, because the arm64 build started to fail without this explicit declaration. --- website/client/package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/client/package.json b/website/client/package.json index 414da12e2b..e9f831be6a 100644 --- a/website/client/package.json +++ b/website/client/package.json @@ -50,6 +50,10 @@ "vuedraggable": "^2.24.3", "vuejs-datepicker": "https://github.com/habitrpg/vuejs-datepicker.git#153d339e4dbebb73733658aeda1d5b7fcc55b0a0" }, + "optionalDependencies": { + "@rollup/rollup-linux-amd64-gnu": "^4.43.0", + "@rollup/rollup-linux-arm64-gnu": "^4.43.0" + }, "devDependencies": { "@babel/plugin-proposal-optional-chaining": "^7.21.0", "@vitest/browser": "^3.0.5",