-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,10 +116,10 @@ export async function runNx(inputs: Inputs): Promise<void> { | |
? ([...nxArgs, '--', inputs.args] as const) | ||
: ([...nxArgs] as const); | ||
|
||
if (inputs.all === true || inputs.affected === false) { | ||
return runNxAll(inputs, args); | ||
} else if (inputs.projects.length > 0) { | ||
if (inputs.projects.length > 0) { | ||
return runNxProjects(inputs, args); | ||
} else if (inputs.all === true || inputs.affected === false) { | ||
return runNxAll(inputs, args); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
jeremylvln
Author
Member
|
||
} else { | ||
return runNxAffected(inputs, args); | ||
} | ||
|
I think this one sounds like a breaking change...
Before the command executed looked like this:
npx nx deploy project --configuration=prod --parallel=3
And after today's commit it looks like this:
nx deploy project --parallel=3 -- --configuration=prod