Skip to content

Commit

Permalink
fix: kibana dev server not restarting external plugin
Browse files Browse the repository at this point in the history
The kibana dev server was not restarting during external plugin development for server side code.

fixes #171260
  • Loading branch information
mickalpine committed Nov 4, 2024
1 parent 0aec5a8 commit a4c3707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kbn-cli-dev-mode/src/watcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const packageMatcher = makeMatcher([
/**
* Any code that is outside of a package must match this in order to trigger a restart
*/
const nonPackageMatcher = makeMatcher(['config/**/*.yml']);
const nonPackageMatcher = makeMatcher(['config/**/*.yml', "plugins/**/server/**/*"]);

export interface Options {
enabled: boolean;
Expand Down

0 comments on commit a4c3707

Please sign in to comment.