observing/pre-commit

spawn doesn't work on windows (with gulp for example)

Closed this issue · 1 comments

the possible solution is to include cross-spawn module in pre-common.js
and change
var proc = child.spawn(cmd, args, options);
in
var proc = spawn(cmd, args, options);

and it works