Tags: vkvarma/store-devtools
Tags
chore: Upgrade to Angular 2 RC.5 (ngrx#26) BREAKING CHANGE: With the introduction of NgModules, the process for instrumenting your store has changed BEFORE: ```ts import { instrumentStore } from '@ngrx/store-devtools'; bootstrap(App, [ instrumentStore(config) ]); ``` AFTER: ```ts import { StoreDevtoolsModule } from '@ngrx/store-devtools'; @NgModule({ imports: [ StoreDevtoolsModule.instrumentStore(config) ] }) export class AppModule { } ```
refactor(): Store v2 compatibility (ngrx#21) refactor(): Store v2 compatibility
PreviousNext