This repository was archived by the owner on Jul 27, 2018. It is now read-only.
Tags: ngrx/store-devtools
Tags
chore: Upgrade to Angular 2 RC.5 (#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 (#21) refactor(): Store v2 compatibility
PreviousNext