Skip to content

Commit

Permalink
Removed no-shrinkwrap option to fix generators
Browse files Browse the repository at this point in the history
  • Loading branch information
Sinjhin committed Nov 2, 2017
1 parent 99110c9 commit 9869a31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
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, '--no-shrinkwrap', '--loglevel', 'error']);
return runCommand('npm', ['install', module, '--loglevel', 'error']);
}
};
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "donejs-cli",
"version": "1.1.0-beta.0",
"version": "1.1.0-beta.1",
"description": "The command line interface to your DoneJS application.",
"main": "lib/utils",
"bin": {
Expand Down

0 comments on commit 9869a31

Please sign in to comment.