chore(build): use cross-spawn instead of spawn

This commit is contained in:
jgw96
2017-07-06 12:40:04 -05:00
parent 5a4b351794
commit e079f7777f
2 changed files with 3 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import { exec, spawnSync, spawn } from 'child_process';
import { exec } from 'child_process';
import { spawn, spawnSync } from 'cross-spawn';
import { writeFileSync } from 'fs';
import * as changelog from 'conventional-changelog';
import * as GithubApi from 'github';