Skip to content

Commit

Permalink
chore(-): rename project to redux async actions factory
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierlefevre committed Jan 23, 2018
1 parent 9723c52 commit 49c5906
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion documentation/fullCodeExample.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
enhanceDefaultState,
enhanceReducer,
enhanceSelectors,
} from 'redux-enhancer';
} from 'redux-async-actions-factory';

const storeName = 'USER';
const asyncActionsNames = ['SIGNUP'];
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bamlab/redux-enhancer"
"url": "https://github.com/bamlab/redux-async-actions-factory"
},
"keywords": [
"react",
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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';
...
```

Expand Down Expand Up @@ -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

0 comments on commit 49c5906

Please sign in to comment.