cli: fix watching of dynamic plugin discovery

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-11-07 19:32:02 +01:00
parent f11105aee9
commit 4a378d3afa
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Fix dev server reloads of plugin discovery for new frontend system.
+1 -1
View File
@@ -372,7 +372,7 @@ export async function createConfig(
...(isDev
? {
watchOptions: {
ignored: /node_modules/,
ignored: /node_modules\/(?!__backstage-autodetected-plugins__)/,
},
}
: {}),