選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

8 行
172 B

  1. import * as childProcess from 'child_process';
  2. export const spawn = (
  3. cwd: string,
  4. command: string,
  5. args: string[],
  6. ) => childProcess.spawn(command, args, { cwd });