Skip to content

Commit

Permalink
Install without creating lock-file
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejewski committed Jun 27, 2017
1 parent e35b01c commit 437d298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.js
Expand Up @@ -62,7 +62,7 @@ var installIfMissing = exports.installIfMissing = function(root, module, range)
module = module + '@' + range;
}
console.log('Installing ' + module);
return runCommand('npm', ['install', module, '--loglevel', 'error']);
return runCommand('npm', ['install', module, '--no-shrinkwrap', '--loglevel', 'error']);
}
};
};
Expand Down

0 comments on commit 437d298

Please sign in to comment.