From a375ca18fbaecd0ca05266972c083e34120ff54a Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 21 Feb 2025 13:38:07 +0100 Subject: [PATCH] fix delayed build We noticed that the build was outdated and lagged behind 1 build. Reason for this is rollup and its second config. Solved by https://github.com/rollup/rollup/issues/1666#issuecomment-1163091988 This could cause problems when types change --- rollup.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/rollup.config.js b/rollup.config.js index 0370b6cc..a4a08289 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -87,5 +87,6 @@ export default [ }), ], external: [/\.css$/], //, /\.d\.ts$/ + watch: false, }, ]