Skip to content

Commit

Permalink
fix(NA): getPluginsDistFromRepo to return only dist plugins on build
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Nov 17, 2023
1 parent 27d2fb9 commit 02fdaa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dev/build/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,6 @@ export class Config {
}

getDistPluginsFromRepo() {
return getPackages(this.repoRoot).filter(this.pluginFilter);
return getPackages(this.repoRoot).filter((p) => this.pluginFilter(p) && !p.isDevOnly());
}
}

0 comments on commit 02fdaa4

Please sign in to comment.