Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kimmobrunfeldt committed Feb 16, 2016
1 parent ebeb25f commit 534ad6a
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 49 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

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

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

Run multiple commands concurrently.
Like `npm run watch-js & npm run watch-less` but better.
Expand Down
96 changes: 48 additions & 48 deletions package.json
@@ -1,49 +1,49 @@
{
"name": "concurrently",
"version": "1.0.0-dev",
"description": "Run commands concurrently",
"main": "src/main.js",
"bin": {
"concurrent": "./src/main.js",
"concurrently": "./src/main.js"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/kimmobrunfeldt/concurrently.git"
},
"keywords": [
"bash",
"concurrent",
"parallel",
"concurrently",
"command",
"sh"
],
"author": "Kimmo Brunfeldt",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimmobrunfeldt/concurrently/issues"
},
"homepage": "https://github.com/kimmobrunfeldt/concurrently",
"dependencies": {
"bluebird": "2.9.6",
"chalk": "0.5.1",
"commander": "2.6.0",
"cross-spawn": "^0.2.9",
"lodash": "3.1.0",
"moment": "^2.11.2",
"rx": "2.3.24"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0",
"mustache": "^1.0.0",
"semver": "^4.2.0",
"shell-quote": "^1.4.3",
"shelljs": "^0.3.0",
"string": "^3.0.0"
}
}
"name": "concurrently",
"version": "2.0.0",
"description": "Run commands concurrently",
"main": "src/main.js",
"bin": {
"concurrent": "./src/main.js",
"concurrently": "./src/main.js"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/kimmobrunfeldt/concurrently.git"
},
"keywords": [
"bash",
"concurrent",
"parallel",
"concurrently",
"command",
"sh"
],
"author": "Kimmo Brunfeldt",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimmobrunfeldt/concurrently/issues"
},
"homepage": "https://github.com/kimmobrunfeldt/concurrently",
"dependencies": {
"bluebird": "2.9.6",
"chalk": "0.5.1",
"commander": "2.6.0",
"cross-spawn": "^0.2.9",
"lodash": "3.1.0",
"moment": "^2.11.2",
"rx": "2.3.24"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0",
"mustache": "^1.0.0",
"semver": "^4.2.0",
"shell-quote": "^1.4.3",
"shelljs": "^0.3.0",
"string": "^3.0.0"
}
}

0 comments on commit 534ad6a

Please sign in to comment.