From 6229e1b7667b1b0722e46e27ab0df35f9b4214ca Mon Sep 17 00:00:00 2001 From: jogibear9988 Date: Fri, 28 Aug 2026 10:16:47 +0200 Subject: [PATCH] fix: update undo demo and restore watch build Replace the outdated no-undo message with the supported undo and redo keyboard shortcuts. Allow Rollup watch mode to write its generated bundles into the app directory, matching the existing project layout and avoiding the Rollup 4.63 input-inside-output validation failure. Verified the extension production build, development watcher, all 91 tests, and git diff checks. --- app/index.html | 8 +++----- rollup.config.mjs | 1 + 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/app/index.html b/app/index.html index 3b1a0eb0..d54ba824 100644 --- a/app/index.html +++ b/app/index.html @@ -670,11 +670,9 @@

for help

-

No undo..

-

yet!

-

BUT
- You can unstyle -

+

Undo & redo

+

Ctrl/⌘+Z

+

Ctrl/⌘+Shift+Z

diff --git a/rollup.config.mjs b/rollup.config.mjs index 3bffc54a..0317062f 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -41,6 +41,7 @@ export default { }, plugins, watch: { + allowInputInsideOutputPath: true, exclude: ['node_modules/**'], } }