UNPKG

742 BMarkdownView Raw
1A list of minor and non-essential differences from npm
2------------------------------------------------------
3
4### git logging raised to http level
5
6By default npm doesn't show what git urls it's trying to install. In yapm this message is displayed at http level, so it will be shown to users by default.
7
8```
9$ yapm install git+https://github.com/visionmedia/commander.js.git
10
11 http - git https://github.com/visionmedia/commander.js.git#master
12
13commander@2.1.0 node_modules/commander
14```
15
16### "micro" as an alias for "patch" in semver
17
18Now you can do `yapm version micro` to increment third number.
19
20For the reasons for this see discussion named ['"PATCH" might be ambiguous'](https://github.com/mojombo/semver/issues/160) in semver repo.
21