ngrx / store-devtools

Developer Tools for @ngrx/store
MIT License
325 stars 38 forks source link

chore: Upgrade to Angular 2 RC.5 #26

Closed MikeRyanDev closed 8 years ago

MikeRyanDev commented 8 years ago

BREAKING CHANGE:

With the introduction of NgModules, the process for instrumenting your store has changed

BEFORE:

import { instrumentStore } from '@ngrx/store-devtools';

bootstrap(App, [
  instrumentStore(config)
]);

AFTER:

import { StoreDevtoolsModule } from '@ngrx/store-devtools';

@NgModule({
  imports: [
    StoreDevtoolsModule.instrumentStore(config)
  ]
})
export class AppModule { }
brandonroberts commented 8 years ago

LGTM