fix(inflector): get rid of ember inflector#2601
Open
VincentMolinie wants to merge 1 commit intomiragejs:masterfrom
Open
fix(inflector): get rid of ember inflector#2601VincentMolinie wants to merge 1 commit intomiragejs:masterfrom
VincentMolinie wants to merge 1 commit intomiragejs:masterfrom
Conversation
Author
|
I cannot update the |
Author
|
@SergeAstapov could you have a look |
|
Thank you for this PR. Is there a chance of this getting released anytime soon ? 🙏 |
|
We would be very grateful if someone could take care of this PR. |
|
Would also be very grateful 🙆 |
|
FWIW I was able to use the following shim for now: Add to /package.json: "pnpm": {
"overrides": {
"ember-cli-mirage>ember-inflector": "link:./packages/ember-inflector-shim"
}
}Add /packages/ember-inflector-shim/package.json: {
"name": "ember-inflector",
"version": "0.0.0-shim",
"main": "index.js",
"dependencies": {
"@ember-data/request-utils": "^5.3.13"
}
}Add /packages/ember-inflector-shim/index.js: export { singularize, pluralize } from '@ember-data/request-utils/string'; |
|
I recommend the following presentation, which was held at the Ember.js Europe Q1 Meetup: |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This will allow migration to Ember 5.x and fixes issue #2589