Skip to content
This repository was archived by the owner on Jul 27, 2018. It is now read-only.

Tags: ngrx/store-devtools

Tags

v3.2.4

Toggle v3.2.4's commit message
3.2.4

v3.1.0

Toggle v3.1.0's commit message
3.1.0

v3.0.2

Toggle v3.0.2's commit message
3.0.2

v3.0.1

Toggle v3.0.1's commit message
3.0.1

v3.0.0

Toggle v3.0.0's commit message
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 { }
```

v2.0.0-beta.1

Toggle v2.0.0-beta.1's commit message
refactor(): Store v2 compatibility (#21)

refactor(): Store v2 compatibility