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
ENG-221: Add parallel build step support via sub-arrays in .puprc
Build and build_dev arrays in .puprc now support sub-arrays to run
commands concurrently. Sequential steps still run one at a time,
while commands within a sub-array execute in parallel via Promise.all.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|`build`|`array`| An array of CLI commands to execute for the build process of your project. |
11
-
|`build_dev`|`array`| An array of CLI commands to execute for the `--dev` build process of your project. If empty, it defaults to the value of `build`|
10
+
|`build`|`array`| An array of CLI commands to execute for the build process of your project. Supports sub-arrays for [parallel execution](/docs/commands.md#parallel-build-steps).|
11
+
|`build_dev`|`array`| An array of CLI commands to execute for the `--dev` build process of your project. If empty, it defaults to the value of `build`. Supports sub-arrays for [parallel execution](/docs/commands.md#parallel-build-steps).|
12
12
|`checks`|`object`| An object of check configurations indexed by the check's slug. See the [docs for checks](/docs/checks.md) for more info. |
13
13
|`env`|`array`| An array of environment variable names that, if set, should be passed to the build and workflow commands. |
14
14
|`paths`|`object`| An object containing paths used by `pup`. [See below](#paths). |
0 commit comments