-
Notifications
You must be signed in to change notification settings - Fork 191
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
[BUGFIX] Ensure legacy path.parts matches existing semantics #1583
Conversation
The refactor in #1568 slightly changed the semantics of `path.parts` in that it didn't previously include `this` or the leading `@`. This commit restores the previous semantics.
@chancancode FYI: After upgrading my app from ember-source
It is not obvious to me where they come from or what to do about them. Any pointers? thanks |
@johanrd does it happen on a fresh app? what addons do you have installed? this would be something that touches the AST, so something with an AST plugin/transform that runs during the build. Unfortunately the deprecation infrastructure here is not very good, it's basically just a |
@chancancode thanks fot the reply. Turns out this is tracked now over here embroider-build/embroider#1967 |
The refactor in #1568 slightly changed the semantics of
path.parts
in that it didn't previously includethis
or the leading@
. This commit restores the previous semantics.