-
Notifications
You must be signed in to change notification settings - Fork 169
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(modifier): ensure compatibility with ember-modifier v4 #540
fix(modifier): ensure compatibility with ember-modifier v4 #540
Conversation
package.json
Outdated
@@ -44,7 +44,7 @@ | |||
}, | |||
"dependencies": { | |||
"@embroider/addon-shim": "^0.50.2", | |||
"ember-modifier": "^3.0.0" | |||
"ember-modifier": "^3.2.7" |
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.
as ember-modifier@4.0.0 got published, let's include it in the range
"ember-modifier": "^3.2.7" | |
"ember-modifier": "^3.2.7 || ^4.0.0" |
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.
Done
@anehx we're running into the compatibility issue you've fixed here. Any chance you can move this forward? |
665d5b7
to
9471789
Compare
@anehx Is there anything blocking this from being merged? I would be happy to help in any way I can. |
@tcjr @patrickberkeley I don't have any permissions on this repo so I can't really push this forward. Since I waited too long for a response we dropped |
@SergeAstapov Anything we can do to help merging this? 🙂 |
This PR converts the
pikaday
modifier to use the newember-modifier
API introduced inv3.2.0
. I migrated the modifier using this guide here.