Skip to content

Commit

Permalink
Merge pull request #122 from donejs/fix-cross-spawn-import
Browse files Browse the repository at this point in the history
Import cross-spawn instead of cross-spawn-async
  • Loading branch information
cherifGsoul committed Jun 18, 2019
2 parents 17f3345 + 829f073 commit eff20c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.js
Expand Up @@ -2,7 +2,7 @@ var Q = require('q');
var debug = require('debug')('donejs-cli:utils');
var path = require('path');
var fs = require('fs');
var spawn = require('cross-spawn-async');
var spawn = require('cross-spawn');
var yeoman = require('yeoman-environment');

exports.projectRoot = function() {
Expand Down

0 comments on commit eff20c7

Please sign in to comment.