File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import { ModuleInfoPlugin } from './default/ModuleInfoPlugin';
77import { RequestInfoPlugin } from './default/RequestInfoPlugin' ;
88import { EnvironmentInfoPlugin } from './default/EnvironmentInfoPlugin' ;
99import { SubmissionMethodPlugin } from './default/SubmissionMethodPlugin' ;
10+ import { DuplicateCheckerPlugin } from './default/DuplicateCheckerPlugin' ;
1011
1112export class EventPluginManager {
1213 public static run ( context :EventPluginContext , callback :( context ?:EventPluginContext ) => void ) : void {
@@ -43,6 +44,7 @@ export class EventPluginManager {
4344 public static addDefaultPlugins ( config :Configuration ) : void {
4445 config . addPlugin ( new ConfigurationDefaultsPlugin ( ) ) ;
4546 config . addPlugin ( new ErrorPlugin ( ) ) ;
47+ config . addPlugin ( new DuplicateCheckerPlugin ( ) ) ;
4648 config . addPlugin ( new ModuleInfoPlugin ( ) ) ;
4749 config . addPlugin ( new RequestInfoPlugin ( ) ) ;
4850 config . addPlugin ( new EnvironmentInfoPlugin ( ) ) ;
You can’t perform that action at this time.
0 commit comments