This commit is contained in:
Nathan Bierema 2020-05-21 23:32:47 -05:00
parent 1af8ee41da
commit 887032417b
2 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,7 @@
"build:types": "tsc --emitDeclarationOnly", "build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline", "build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx", "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tx --fix", "lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test": "tsc --project test/tsconfig.json --noEmit && jest", "test": "tsc --project test/tsconfig.json --noEmit && jest",
"prepare": "npm run build", "prepare": "npm run build",
"prepublishOnly": "npm run test && npm run clean && npm run build" "prepublishOnly": "npm run test && npm run clean && npm run build"

View File

@ -3,6 +3,7 @@ export {
ActionCreators, ActionCreators,
ActionTypes, ActionTypes,
LiftedAction, LiftedAction,
LiftedState,
PerformAction PerformAction
} from 'redux-devtools-instrument'; } from 'redux-devtools-instrument';
export { default as persistState } from './persistState'; export { default as persistState } from './persistState';