Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 0.1.0 #4

Merged
merged 1 commit into from
Feb 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
## v0.1.0 <sub><sup>(2017-02-08)</sup></sub>
* Update `multi-tool` version to `0.2.x`
* Update `directory` option name to `path`
* Add more strict checks against package name and version

## v0.0.0 <sub><sup>(2017-02-06)</sup></sub>
* Initial release
25 changes: 15 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# multi-tool-cli <sub><sup>| Install multiple versions of NPM packages via semver ranges<sup></sub>
[![version](http://img.shields.io/badge/version-0.0.0-blue.svg)](https://www.npmjs.com/package/@cloudelements/multi-tool-cli)
[![version](http://img.shields.io/badge/version-0.1.0-blue.svg)](https://www.npmjs.com/package/@cloudelements/multi-tool-cli)
[![versioning](http://img.shields.io/badge/versioning-semver-blue.svg)](http://semver.org/)
[![branching](http://img.shields.io/badge/branching-github%20flow-blue.svg)](https://guides.github.com/introduction/flow/)
[![styling](http://img.shields.io/badge/code%20styling-XO-blue.svg)](https://github.com/sindresorhus/xo)
Expand All @@ -12,16 +12,21 @@ $ npm install --global multi-tool-cli

## Usage
```bash
$ multi-tool install ramda@0.23.0
ramda@0.23.0
$ multi-tool install ramda@0.23.x
ramda@0.23.x
$ multi-tool install ramda@latest
ramda@latest
$ multi-tool install ramda@latest --directory /path/to/project/node_modules
ramda@latest
$ multi-tool --help
Usage
$ multi-tool install <<name>@<version>> [--path <path>]

Examples
$ multi-tool install ramda@0.23.0
ramda@0.23.0
$ multi-tool install ramda@0.23.x
ramda@0.23.x
$ multi-tool install ramda@latest
ramda@latest
$ multi-tool install ramda@latest --path /path/to/project/node_modules
ramda@latest
```
> __PROTIP:__ Any valid semver range that is also a valid \*nix directory name is supported.
> __PROTIP:__ Any valid semver range that is also a valid (Li|U)nix directory name is supported.

## Maintainers
* Rocky Madden ([@rockymadden](https://github.com/rockymadden))
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"test": "node --harmony node_modules/.bin/xo && node --harmony node_modules/.bin/nyc --check-coverage node --harmony node_modules/.bin/ava",
"unit": "node --harmony node_modules/.bin/ava"
},
"version": "0.0.0",
"version": "0.1.0",
"xo": {
"esnext": true,
"space": 2
Expand Down