Skip to content

Commit a070996

Browse files
committed
0.3.3 update reset to support installing deps with alpha/beta tags
1 parent ac68fea commit a070996

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/reset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function get_install_string( dep_type ) {
1010

1111
const formatted = Object.keys( deps ).map( d => {
1212
const version = deps[ d ];
13-
return /^[0-9]+\.[0-9]+\.[0-9]+$/.test( version )
13+
return /^[0-9]+\.[0-9]+\.[0-9]+/.test( version )
1414
? d + '@' + version
1515
: version;
1616
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "upgrade-deps",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "CLI for automating updating package.json dependencies",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)