Skip to content

Commit abe1f6b

Browse files
authoredNov 21, 2019
fix(effects): add EffectsRootModule and EffectsFeatureModule to public API (#2273)
Fixes Ivy support in Bazel: angular/angular#33373
1 parent c42e444 commit abe1f6b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎modules/effects/src/index.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ export { Actions, ofType } from './actions';
88
export { EffectsModule } from './effects_module';
99
export { EffectSources } from './effect_sources';
1010
export { EffectNotification } from './effect_notification';
11-
export { ROOT_EFFECTS_INIT, rootEffectsInit } from './effects_root_module';
11+
export { EffectsFeatureModule } from './effects_feature_module';
12+
export {
13+
ROOT_EFFECTS_INIT,
14+
rootEffectsInit,
15+
EffectsRootModule,
16+
} from './effects_root_module';
1217
export { act } from './act';
1318
export {
1419
OnIdentifyEffects,

0 commit comments

Comments
 (0)
Please sign in to comment.