You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to keep using react-hoverintent as it works nicely. But since we've upgraded to babel7 our corejs is duplicated since you still use corejs 1. I've upgraded to babel7 which fixed the problem. Please let me know if you can implement this :)
First of all, thanks for creating the pull request.
I might have lost track of this project but I would need some time to look at the PR and maybe add a few test cases to make the PR process a bit smooth ever for the changes in future.
As a work around, I would recommend you to use import HoverIntet from './node_modules/react-hoverintent/src/components' (I know this looks counter intuitive).
What this will do is let you build the component as per your build pipeline and babel version and you should be able to use it with babel 7 for now.
I would like to come up with a way to let the users import the raw component (not transpiled) somehow to let them run it through their own pipeline.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hey hey,
I want to keep using react-hoverintent as it works nicely. But since we've upgraded to babel7 our corejs is duplicated since you still use corejs 1. I've upgraded to babel7 which fixed the problem. Please let me know if you can implement this :)