Skip to content
This repository has been archived by the owner on Jan 10, 2018. It is now read-only.

2.1.1

Compare
Choose a tag to compare
@robwormald robwormald released this 15 Aug 03:57
· 18 commits to master since this release

Adds support for Angular2 RC5 and App Modules.

  • BREAKING CHANGE: users should import {StoreModule, Store} from '@ngrx/store' and provide the store as follows:
import {StoreModule, Store} from '@ngrx/store'
import {NgModule} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'

@NgModule({
  imports: [
    BrowserModule,
    StoreModule.provideStore(reducer, initialState)
  ]
})