From 36940222be6c2fcb983da62c8eb4d235be2081cf Mon Sep 17 00:00:00 2001 From: Conduitry Date: Sat, 18 May 2019 08:56:28 -0400 Subject: [PATCH] do not clear screen during rollup watch --- rollup.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index c58c822..a92e3ed 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -40,5 +40,8 @@ export default { // If we're building for production (npm run build // instead of npm run dev), minify production && terser() - ] + ], + watch: { + clearScreen: false + } };