From f6ebc59278afc5943ace4c9e9614aa4a8cf524db Mon Sep 17 00:00:00 2001 From: CoxyBoris Date: Thu, 9 Mar 2023 15:55:33 +0400 Subject: [PATCH] fix export --- package.json | 2 +- src/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 249c107..f376866 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bufferapp/notifications", - "version": "1.9.4", + "version": "1.9.5", "description": "Display application notifications", "main": "lib/index.js", "scripts": { diff --git a/src/index.js b/src/index.js index 69ee300..d9193e0 100644 --- a/src/index.js +++ b/src/index.js @@ -12,5 +12,5 @@ export default connect( }), )(Notifications) -export reducer, { actions, actionTypes } from './reducer' -export middleware from './middleware' +export { default as reducer, actions, actionTypes } from './reducer' +export { default as middleware } from './middleware'