From 887032417b2f31d99fcf8df8577bc01e55b351c9 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Thu, 21 May 2020 23:32:47 -0500 Subject: [PATCH] Changes --- packages/redux-devtools/package.json | 2 +- packages/redux-devtools/src/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/redux-devtools/package.json b/packages/redux-devtools/package.json index a4bfd96b..f940c77a 100644 --- a/packages/redux-devtools/package.json +++ b/packages/redux-devtools/package.json @@ -12,7 +12,7 @@ "build:types": "tsc --emitDeclarationOnly", "build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline", "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", "prepare": "npm run build", "prepublishOnly": "npm run test && npm run clean && npm run build" diff --git a/packages/redux-devtools/src/index.ts b/packages/redux-devtools/src/index.ts index c618de94..22c3bf15 100644 --- a/packages/redux-devtools/src/index.ts +++ b/packages/redux-devtools/src/index.ts @@ -3,6 +3,7 @@ export { ActionCreators, ActionTypes, LiftedAction, + LiftedState, PerformAction } from 'redux-devtools-instrument'; export { default as persistState } from './persistState';