2.0.0 • Published 4 years ago

@start/plugin-parallel v2.0.0

Weekly downloads
99
License
MIT
Repository
github
Last release
4 years ago

🔀 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

  • maxProcessesInfinity 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)
  )