-
Notifications
You must be signed in to change notification settings - Fork 16
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
.equal now checks for isImmutable instead of isIterable #213
Conversation
Great stuff, thanks @gugu! |
@astorije I updated immutable dependency version. Is it okay? It will test both branches |
Hey @gugu, thanks for following up! |
Hey @gugu, do you have any plans to finish this? I'd love to merge your work :) |
@astorije done, I'll check build results tomorrow |
.travis.yml
Outdated
- 'if [ "$IMMUTABLE_VERSION" ]; then npm install immutable@$IMMUTABLE_VERSION; fi' | ||
env: | ||
- IMMUTABLE_VERSION=3 | ||
- IMMUTABLE_VERSION=4.0.0-rc.12 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this accept a broader version, such as IMMUTABLE_VERSION=4
or something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
only after release, this version does not follow semver :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I realized that, that's why I went with ^4.0.0-rc
. When 4 gets stable, I'll revise that.
Very cool, thanks for keeping up with me, @gugu, I think we're getting there! :) |
@astorije I fixed issues, but I don't know why does appveyor fails |
…config file a little
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very cool, thanks!
I added some changes in an extra commit. Before I merge, are you okay with those?
Yes, that's okay |
Thank you! 🙏 |
This has now be released as part of v2.1.0. Thanks again! |
.equal now checks for isImmutable instead of isIterable
Copies isImmutable function from #83, but no conflicts and check for isImmutable only for .equal. Other places have valid checks for isIterable (.empty or .size is not available in Record)