@district01/ng-redux-router
Advanced tools
Comparing version 2.0.4 to 2.0.5
@@ -0,3 +1,9 @@ | ||
<a name="2.0.5"></a> | ||
# [2.0.5](https://bitbucket.org/tom_opdebeeck/ng-redux-router/commits/tag/v2.0.5) (2017-12-07) | ||
### Bugfixes | ||
* **BUGFIX:** fix types export ([585632a](https://bitbucket.org/tom_opdebeeck/ng-redux-router/commits/585632ae256987c108fc12fe5fbda0b1583bdb27)) | ||
<a name="2.0.4"></a> | ||
# [2.0.4](https://bitbucket.org/tom_opdebeeck/ng-redux-router/commits/tag/v2.0.3) (2017-10-04) | ||
# [2.0.4](https://bitbucket.org/tom_opdebeeck/ng-redux-router/commits/tag/v2.0.4) (2017-10-04) | ||
@@ -4,0 +10,0 @@ ### Bugfixes |
{ | ||
"name": "@district01/ng-redux-router", | ||
"version": "2.0.4", | ||
"version": "2.0.5", | ||
"description": "Sync Angular (2+) router state with redux, including: current path, current url, query params, route params, fragment, previous route.", | ||
@@ -13,2 +13,3 @@ "keywords": [ | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
@@ -15,0 +16,0 @@ "prepublish": "npm run bundle", |
@@ -14,7 +14,7 @@ # Angular Redux Router | ||
``` | ||
import { NgReduxRouterModule } from 'ng-redux-router'; | ||
import { ReduxRouterModule } from '@district01/ng-redux-router'; | ||
@NgModule({ | ||
imports: [ | ||
NgReduxRouterModule | ||
ReduxRouterModule | ||
] | ||
@@ -30,5 +30,5 @@ }) | ||
private ngRedux: NgRedux<MyAppState>, | ||
private ngReduxRouter: NgReduxRouter | ||
private reduxRouter: ReduxRouter | ||
) { | ||
ngReduxRouter.initialize(ngRedux.dispatch); | ||
reduxRouter.initialize(ngRedux.dispatch); | ||
} | ||
@@ -35,0 +35,0 @@ ``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18740