From 63e864ff81b6268e5a75b34b6cbd5f25c3d7580f Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 22 Feb 2025 16:54:34 +0100 Subject: [PATCH] fix delayed build (#150) 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, }, ]