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
makeSureNoAppIsSelected() correctly verifies passed arguments as long as they're formulated as -a=app-name or --app=app-name. However, arguments are missed if they're formulated without the equal sign after the argument key, i.e., -a app-name or --app app-name.
That syntax, both with and without the equals sign after the argument key, is valid, as shown in Angular CLI's "Multiple Apps integration" story.
See reference below to where the equal sign is being explicitly sought out as part of the argument.
makeSureNoAppIsSelected()
correctly verifies passed arguments as long as they're formulated as-a=app-name
or--app=app-name
. However, arguments are missed if they're formulated without the equal sign after the argument key, i.e.,-a app-name
or--app app-name
.That syntax, both with and without the equals sign after the argument key, is valid, as shown in Angular CLI's "Multiple Apps integration" story.
See reference below to where the equal sign is being explicitly sought out as part of the argument.
nx/packages/schematics/src/utils/cli-config-utils.ts
Lines 25 to 43 in be6bfd3
The text was updated successfully, but these errors were encountered: