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
When I upgrade my addon to use @ember/string v4.0, my addon build will throw an error that says:
"Module not found: Error: ember-cli-string-helpers is trying to import the app's @ember/string package, but it seems to be missing"
I noticed that the ember-cli-string-helpers addon was archived in October 2024. I think it would be a good idea to remove this package and replace it with something that is maintained. For now, the way to fix this issue is by locking the version of @ember/string to 3.1.1.
The text was updated successfully, but these errors were encountered:
- This pulls @ember/string 3.1.1 into dependent project and that causes a lot of issues
- Since we have `capitalize` in @ember/string, we can just call that in our internal helper
- Also bumped internal version of @ember/string to v4.x
Fixesember-learn#1666
- This pulls @ember/string 3.1.1 into dependent project and that causes a lot of issues
- Since we have `capitalize` in @ember/string, we can just call that in our internal helper
- Also bumped internal version of @ember/string to v4.x
Fixesember-learn#1666
When I upgrade my addon to use
@ember/string
v4.0, my addon build will throw an error that says:"Module not found: Error: ember-cli-string-helpers is trying to import the app's @ember/string package, but it seems to be missing"
I noticed that the
ember-cli-string-helpers
addon was archived in October 2024. I think it would be a good idea to remove this package and replace it with something that is maintained. For now, the way to fix this issue is by locking the version of@ember/string
to 3.1.1.The text was updated successfully, but these errors were encountered: