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

Commit

Permalink
fix: publish default
Browse files Browse the repository at this point in the history
  • Loading branch information
jony89 committed Jan 24, 2018
1 parent 73938bb commit d1e8439
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reducer-action-interceptor",
"version": "0.1.0",
"version": "0.1.1",
"description": "reducer-action-interceptor allows you on one hand to intercept action creators in order to patch the action before bubblig up to the reducers, and on the other hand to intercept the reducers in order to take advantage of that interception",
"main": "index.js",
"jsnext:main": "es/index.js",
Expand Down
12 changes: 9 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
export { default as reducerInterceptor } from './reducerInterceptor';
export { default as actionMetaInterceptor } from './actionMetaInterceptor';
export { default as actionCreatorsInterceptor } from './actionCreatorsInterceptor';
import reducerInterceptor from './reducerInterceptor';
import actionMetaInterceptor from './actionMetaInterceptor';
import actionCreatorsInterceptor from './actionCreatorsInterceptor';

export default {
reducerInterceptor,
actionMetaInterceptor,
actionCreatorsInterceptor
}

0 comments on commit d1e8439

Please sign in to comment.