Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kimmobrunfeldt committed May 14, 2016
1 parent 2c9e590 commit 5fc4564
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://travis-ci.org/kimmobrunfeldt/concurrently.svg)](https://travis-ci.org/kimmobrunfeldt/concurrently)

**Version: 2.0.0** ([*previous stable*](https://github.com/kimmobrunfeldt/concurrently/tree/1.0.0))
**Version: 2.1.0** ([*previous stable*](https://github.com/kimmobrunfeldt/concurrently/tree/2.0.0))

Run multiple commands concurrently.
Like `npm run watch-js & npm run watch-less` but better.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "concurrently",
"version": "2.0.0-dev",
"version": "2.1.0",
"description": "Run commands concurrently",
"main": "src/main.js",
"bin": {
Expand Down Expand Up @@ -46,4 +46,4 @@
"shelljs": "^0.3.0",
"string": "^3.0.0"
}
}
}
2 changes: 1 addition & 1 deletion tools/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function mergeArgsToDefaults(config) {
if (program.args[0]) {
config.bumpType = program.args[0];

if (!_.contains(['major', 'minor', 'patch'], config.bumpType)) {
if (!_.includes(['major', 'minor', 'patch'], config.bumpType)) {
console.error('Error:', config.bumpType, 'is not a valid bump type');
process.exit(1);
}
Expand Down

0 comments on commit 5fc4564

Please sign in to comment.