-
Notifications
You must be signed in to change notification settings - Fork 200
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
Fix dependencies of history #180
Conversation
@koba04 Hey, I think adding |
@Scarysize
( I suppose it's a problem to be installed
|
Right now |
Thanks for adding
Would you please make sure of a way to publish this package? |
The following packages should be in the dependencies section of package.json (not in devDependencies), since stuff is imported from these packages inside this project's src/*.js modules:
Maybe some of these should rather be peerDependencies. |
I found related issues. Can you republish this with |
@Scarysize Thanks! |
I tried
npm shrinkwrap
on an app that hasredux-router
as dependencies.But an error occurs because
history
exists indevDependencies
instead ofdependencies
.This PR is to fix that issue.
Thanks.