Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 272 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 272 Bytes

projector-spawn

Spawn processes with ease

Installation

yarn add --dev projector-spawn

Usage

import spawn from 'projector-spawn';

export async function build() {
  await spawn('script-name', ['--flag'], {
    cwd: '/path/to/cwd'
  });
}