From 1c6d76d37e4045137a9f2162566fd4ace9bdea5f Mon Sep 17 00:00:00 2001 From: James Salas Date: Fri, 18 Jan 2019 12:23:36 -0500 Subject: [PATCH] fix: readme links to deprecated repo update (#66) --- packages/example-app/README.md | 8 +++----- packages/form/README.md | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/packages/example-app/README.md b/packages/example-app/README.md index 95400a68..fb708e2d 100644 --- a/packages/example-app/README.md +++ b/packages/example-app/README.md @@ -7,13 +7,11 @@ application. - [redux](https://github.com/reactjs/redux) Predictable state container for Javascript. - [redux-observable](https://github.com/redux-observable/redux-observable) Side-effect handling with Observables -- [@angular-redux/store](https://github.com/angular-redux/store) Redux + Angular bindings -- [@angular-redux/router](https://github.com/angular-redux/router) Time travel with the Angular router -- [@angular-redux/form](https://github.com/angular-redux/form) Time travel with Angular forms +- [@angular-redux/store](/packages/store) Redux + Angular bindings +- [@angular-redux/router](/packages/router) Time travel with the Angular router +- [@angular-redux/form](/packages/form) Time travel with Angular forms - [Redux DevTools Chrome Extension](https://github.com/zalmoxisus/redux-devtools-extension) -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.0-rc.0. - ## Development server Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. diff --git a/packages/form/README.md b/packages/form/README.md index edf47af7..ddeebee3 100644 --- a/packages/form/README.md +++ b/packages/form/README.md @@ -56,7 +56,7 @@ the class that is responsible for connecting your forms to your Redux state. There are two ways of doing this: either using an `Redux.Store` object or an `NgRedux` object. There are no substantial differences between these approaches, but if you are already using -[@angular-redux/store](https://github.com/angular-redux/store) or you wish to integrate +[@angular-redux/store](/packages/store) or you wish to integrate it into your project, then you would do something like this: ```typescript