π plugin-parallel
Run tasks as parallel child processes with same agruments.
Install
$ yarn add --dev @start/plugin-parallel
Usage
Signature
parallel(taskNames: string[], options?: {}): (...args: string[])
taskNames
Array of exported task names.
options
-
maxProcesses
βInfinity
by default
Example
import sequence from '@start/plugin-sequence'
import find from '@start/plugin-find'
import remove from '@start/plugin-remove'
import parallel from '@start/plugin-parallel'
export const buildCJS = (...args) => {
// β¦
}
export const buildESM = (...args) => {
// β¦
}
export const task = (...args) =>
sequence(
find('build/'),
remove,
parallel(['buildCJS', 'buildESM'])(...args)
)