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
Copy file name to clipboardExpand all lines: docs/angular/api-workspace/executors/run-commands.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,14 +106,18 @@ that sets the `forwardAllArgs` option to `false` as shown below:
106
106
107
107
##### Custom **done** conditions
108
108
109
-
Normally, `run-commands` considers the commands done when all of them have finished running. If you don't need to wait until they're all done, you can set a special string, that considers the command finished the moment the string appears in `stdout` or `stderr`:
109
+
Normally, `run-commands` considers the commands done when all of them have finished running. If you don't need to wait until they're all done, you can set a special string that considers the commands finished the moment the string appears in `stdout` or `stderr`:
@@ -122,7 +126,7 @@ Normally, `run-commands` considers the commands done when all of them have finis
122
126
nx run frontend:finish-when-ready
123
127
```
124
128
125
-
The above command will finish immediately, instead of waiting for 5 seconds.
129
+
The above commands will finish immediately, instead of waiting for 5 seconds.
126
130
127
131
##### Nx Affected
128
132
@@ -218,4 +222,4 @@ Run commands in parallel
218
222
219
223
Type: `string`
220
224
221
-
String to appear in stdout or stderr that indicates that the task is done. This option can only be used when parallel is set to true. If not specified, the task is done when all the child processes complete.
225
+
String to appear in `stdout` or `stderr` that indicates that the task is done. This option can only be used when multiple commands are run and `parallel` is set to `true`. If not specified, the task is done when all the child processes complete.
Copy file name to clipboardExpand all lines: docs/node/api-workspace/executors/run-commands.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,14 +107,18 @@ that sets the `forwardAllArgs` option to `false` as shown below:
107
107
108
108
##### Custom **done** conditions
109
109
110
-
Normally, `run-commands` considers the commands done when all of them have finished running. If you don't need to wait until they're all done, you can set a special string, that considers the command finished the moment the string appears in `stdout` or `stderr`:
110
+
Normally, `run-commands` considers the commands done when all of them have finished running. If you don't need to wait until they're all done, you can set a special string that considers the commands finished the moment the string appears in `stdout` or `stderr`:
@@ -123,7 +127,7 @@ Normally, `run-commands` considers the commands done when all of them have finis
123
127
nx run frontend:finish-when-ready
124
128
```
125
129
126
-
The above command will finish immediately, instead of waiting for 5 seconds.
130
+
The above commands will finish immediately, instead of waiting for 5 seconds.
127
131
128
132
##### Nx Affected
129
133
@@ -219,4 +223,4 @@ Run commands in parallel
219
223
220
224
Type: `string`
221
225
222
-
String to appear in stdout or stderr that indicates that the task is done. This option can only be used when parallel is set to true. If not specified, the task is done when all the child processes complete.
226
+
String to appear in `stdout` or `stderr` that indicates that the task is done. This option can only be used when multiple commands are run and `parallel` is set to `true`. If not specified, the task is done when all the child processes complete.
Copy file name to clipboardExpand all lines: docs/react/api-workspace/executors/run-commands.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,14 +107,18 @@ that sets the `forwardAllArgs` option to `false` as shown below:
107
107
108
108
##### Custom **done** conditions
109
109
110
-
Normally, `run-commands` considers the commands done when all of them have finished running. If you don't need to wait until they're all done, you can set a special string, that considers the command finished the moment the string appears in `stdout` or `stderr`:
110
+
Normally, `run-commands` considers the commands done when all of them have finished running. If you don't need to wait until they're all done, you can set a special string that considers the commands finished the moment the string appears in `stdout` or `stderr`:
@@ -123,7 +127,7 @@ Normally, `run-commands` considers the commands done when all of them have finis
123
127
nx run frontend:finish-when-ready
124
128
```
125
129
126
-
The above command will finish immediately, instead of waiting for 5 seconds.
130
+
The above commands will finish immediately, instead of waiting for 5 seconds.
127
131
128
132
##### Nx Affected
129
133
@@ -219,4 +223,4 @@ Run commands in parallel
219
223
220
224
Type: `string`
221
225
222
-
String to appear in stdout or stderr that indicates that the task is done. This option can only be used when parallel is set to true. If not specified, the task is done when all the child processes complete.
226
+
String to appear in `stdout` or `stderr` that indicates that the task is done. This option can only be used when multiple commands are run and `parallel` is set to `true`. If not specified, the task is done when all the child processes complete.
Copy file name to clipboardExpand all lines: packages/workspace/docs/run-commands-examples.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,14 +98,18 @@ that sets the `forwardAllArgs` option to `false` as shown below:
98
98
99
99
##### Custom **done** conditions
100
100
101
-
Normally, `run-commands` considers the commands done when all of them have finished running. If you don't need to wait until they're all done, you can set a special string, that considers the command finished the moment the string appears in `stdout` or `stderr`:
101
+
Normally, `run-commands` considers the commands done when all of them have finished running. If you don't need to wait until they're all done, you can set a special string that considers the commands finished the moment the string appears in `stdout` or `stderr`:
Copy file name to clipboardExpand all lines: packages/workspace/src/executors/run-commands/schema.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@
46
46
},
47
47
"readyWhen": {
48
48
"type": "string",
49
-
"description": "String to appear in stdout or stderr that indicates that the task is done. This option can only be used when parallel is set to true. If not specified, the task is done when all the child processes complete."
49
+
"description": "String to appear in `stdout` or `stderr` that indicates that the task is done. This option can only be used when multiple commands are run and `parallel` is set to `true`. If not specified, the task is done when all the child processes complete."
0 commit comments