File tree 1 file changed +2
-0
lines changed
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';
7
7
import { RequestInfoPlugin } from './default/RequestInfoPlugin' ;
8
8
import { EnvironmentInfoPlugin } from './default/EnvironmentInfoPlugin' ;
9
9
import { SubmissionMethodPlugin } from './default/SubmissionMethodPlugin' ;
10
+ import { DuplicateCheckerPlugin } from './default/DuplicateCheckerPlugin' ;
10
11
11
12
export class EventPluginManager {
12
13
public static run ( context :EventPluginContext , callback :( context ?:EventPluginContext ) => void ) : void {
@@ -43,6 +44,7 @@ export class EventPluginManager {
43
44
public static addDefaultPlugins ( config :Configuration ) : void {
44
45
config . addPlugin ( new ConfigurationDefaultsPlugin ( ) ) ;
45
46
config . addPlugin ( new ErrorPlugin ( ) ) ;
47
+ config . addPlugin ( new DuplicateCheckerPlugin ( ) ) ;
46
48
config . addPlugin ( new ModuleInfoPlugin ( ) ) ;
47
49
config . addPlugin ( new RequestInfoPlugin ( ) ) ;
48
50
config . addPlugin ( new EnvironmentInfoPlugin ( ) ) ;
You can’t perform that action at this time.
0 commit comments