Skip to content

Commit

Permalink
default to ^ instead of ~
Browse files Browse the repository at this point in the history
  • Loading branch information
mikolalysenko committed Feb 2, 2014
1 parent 34c5419 commit c77a6f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion default-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function readDeps (test) { return function (cb) {
try { p = JSON.parse(p) }
catch (e) { return next() }
if (!p.version) return next()
deps[d] = '~' + p.version
deps[d] = '^' + p.version
return next()
})
})
Expand Down

0 comments on commit c77a6f7

Please sign in to comment.