From 49c5906b5bd5f72cc3d8eb899eaf08682e60c145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Lef=C3=A8vre?= Date: Tue, 23 Jan 2018 19:17:43 +0100 Subject: [PATCH] chore(-): rename project to redux async actions factory --- documentation/fullCodeExample.js | 2 +- package.json | 6 +++--- readme.md | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/documentation/fullCodeExample.js b/documentation/fullCodeExample.js index 0135cda..f259549 100644 --- a/documentation/fullCodeExample.js +++ b/documentation/fullCodeExample.js @@ -4,7 +4,7 @@ import { enhanceDefaultState, enhanceReducer, enhanceSelectors, -} from 'redux-enhancer'; +} from 'redux-async-actions-factory'; const storeName = 'USER'; const asyncActionsNames = ['SIGNUP']; diff --git a/package.json b/package.json index e84303d..21b92d4 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { - "name": "redux-enhancer", - "version": "1.1.1", + "name": "redux-async-actions-factory", + "version": "1.1.2", "description": "Automaticaly adds loading and error states to your API calls, and a reset store to each of yours Redux stores.", "main": "index.js", "author": "Xavier Lefèvre ", "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/bamlab/redux-enhancer" + "url": "https://github.com/bamlab/redux-async-actions-factory" }, "keywords": [ "react", diff --git a/readme.md b/readme.md index 9bfa382..fa0efce 100644 --- a/readme.md +++ b/readme.md @@ -68,7 +68,7 @@ Enhance your redux modules: ```javascript import { enhanceActionTypes, enhanceActionCreators, - enhanceDefaultState, enhanceReducer, enhanceSelectors } from 'redux-enhancer'; + enhanceDefaultState, enhanceReducer, enhanceSelectors } from 'redux-async-actions-factory'; ... ``` @@ -187,11 +187,11 @@ function* signupSaga(action) { ### Deployment -* Bump the version and create a new commit +* Bump the version in the package.json and create a new commit * Create a tag linked to the bump version commit: `git tag vX.Y.Z` * Check that your tag was added locally: `git tag -l` * Push your tag to Github: `git push origin vX.Y.Z` * Verify in Github that there is a new release, and add a release note * Publish to NPM now: `npm publish` * Tada! After a few minutes, you will see the new version on NPM: - https://www.npmjs.com/package/redux-enhancer + https://www.npmjs.com/package/redux-async-actions-factory