We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac68fea commit a070996Copy full SHA for a070996
lib/reset.js
@@ -10,7 +10,7 @@ function get_install_string( dep_type ) {
10
11
const formatted = Object.keys( deps ).map( d => {
12
const version = deps[ d ];
13
- return /^[0-9]+\.[0-9]+\.[0-9]+$/.test( version )
+ return /^[0-9]+\.[0-9]+\.[0-9]+/.test( version )
14
? d + '@' + version
15
: version;
16
});
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "upgrade-deps",
3
- "version": "0.3.2",
+ "version": "0.3.3",
4
"description": "CLI for automating updating package.json dependencies",
5
"main": "index.js",
6
"scripts": {
0 commit comments