Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing default devtools export #199

Open
civancza opened this issue Jun 20, 2024 · 0 comments
Open

Fixing default devtools export #199

civancza opened this issue Jun 20, 2024 · 0 comments

Comments

@civancza
Copy link

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch [email protected] for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/unistore/devtools.js b/node_modules/unistore/devtools.js
index 6c6b2f1..33143de 100644
--- a/node_modules/unistore/devtools.js
+++ b/node_modules/unistore/devtools.js
@@ -1,6 +1,6 @@
-module.exports = function unistoreDevTools(store) {
-	var extension = window.__REDUX_DEVTOOLS_EXTENSION__ || window.top.__REDUX_DEVTOOLS_EXTENSION__;
-	var ignoreState = false;
+function unistoreDevTools(store) {
+	const extension = window.__REDUX_DEVTOOLS_EXTENSION__ || window.top.__REDUX_DEVTOOLS_EXTENSION__;
+	const ignoreState = false;
 
 	if (!extension) {
 		console.warn('Please install/enable Redux devtools extension');
@@ -19,7 +19,7 @@ module.exports = function unistoreDevTools(store) {
 		});
 		store.devtools.init(store.getState());
 		store.subscribe(function (state, action) {
-			var actionName = action && action.name || 'setState';
+			const actionName = action && action.name || 'setState';
 
 			if (!ignoreState) {
 				store.devtools.send(actionName, state);
@@ -31,3 +31,5 @@ module.exports = function unistoreDevTools(store) {
 
 	return store;
 }
+
+export default unistoreDevTools;

This issue body was partially generated by patch-package.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant