-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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(core): replaceAppNameWithPath should not consider additional properties #9706 #9729
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/nrwl/nx-dev/3wZxfH3weA6YXzBBtpSFf6rCSEF6 [Deployment for 3837632 canceled] |
@Coly010 Should |
It should! good catch. They did mention that key, I missed that. I focused on the serve error which was caused by default configuration |
fdbb07b
to
3837632
Compare
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior
The util function replaces the appName with the path to the app. It ignores certain properties that should not be replaced.
defaultConfiguration
andmaximumError
is not one of those properties.If an app is called
dev
then it will have issues if thedefaultConfiguration
isdevelopment
and it will replace it with a path.maximumError
conflicts with app names containingmb
etc.Expected Behavior
Do not consider
defaultConfiguration
ormaximumError
when replacing app name with pathRelated Issue(s)
Fixes #9706