ultra-runner
Advanced tools
Comparing version 3.2.0 to 3.2.1
@@ -5,2 +5,21 @@ # Changelog | ||
### [3.2.1](https://github.com/folke/ultra-runner/compare/v3.2.0...v3.2.1) (2020-04-02) | ||
### Bug Fixes | ||
* 🐛 make the Runner.runRecursive method asynchronous ([#56](https://github.com/folke/ultra-runner/issues/56)) ([10b8853](https://github.com/folke/ultra-runner/commit/10b88531d8ca0683b98eb593bf97051df61df9d4)) | ||
* **deps:** update dependency chalk to v4 ([#54](https://github.com/folke/ultra-runner/issues/54)) ([8da7549](https://github.com/folke/ultra-runner/commit/8da75494826f152fb20fed56b6e3e4db51f22723)) | ||
* **test:** 🐛 🚨 fix tests that call runner and expected a process.exit(1) ([8b1ed9b](https://github.com/folke/ultra-runner/commit/8b1ed9b2c6008d2c1f2cfd219a7f0d9fd5f510c4)) | ||
* 🐛 make runRecursive return a promise & move process.exit to cli ([9b4adf1](https://github.com/folke/ultra-runner/commit/9b4adf1490cad82250b0ddd4e0c3b6eea5e3e051)) | ||
### Other | ||
* **deps:** 🔗 ➖ dep strip-json-comments ([8af4d1e](https://github.com/folke/ultra-runner/commit/8af4d1eaa61b87589d3406fec8c5e2de9c5b136f)) | ||
* **deps:** 🔗 Merge branches 'master' and 'master' of github.com:folke/ultra-runner ([6b8d87e](https://github.com/folke/ultra-runner/commit/6b8d87e53d5145aa99a52a0de411f8b5e5d68629)) | ||
* **deps:** update all non-major dependencies ([#52](https://github.com/folke/ultra-runner/issues/52)) ([6bbc7bf](https://github.com/folke/ultra-runner/commit/6bbc7bf82ed249e74aaa5b27180f163cce2ffe9e)) | ||
* **deps:** update dependency @types/prettier to v2 ([#55](https://github.com/folke/ultra-runner/issues/55)) ([4c04e19](https://github.com/folke/ultra-runner/commit/4c04e1933bf6a94e17f1a4fad076ac4b2d411a70)) | ||
* **deps:** update dependency @types/sinon to v9 ([#53](https://github.com/folke/ultra-runner/issues/53)) ([e872990](https://github.com/folke/ultra-runner/commit/e872990649d150822ad7015f7b36f439ebe8bfed)) | ||
## [3.2.0](https://github.com/folke/ultra-runner/compare/v3.1.0...v3.2.0) (2020-03-28) | ||
@@ -7,0 +26,0 @@ |
@@ -265,3 +265,3 @@ "use strict"; | ||
command.concurrent = true; | ||
this._run(command, -1); | ||
return yield this._run(command, -1); | ||
}); | ||
@@ -278,11 +278,4 @@ } | ||
} | ||
catch (error) { | ||
finally { | ||
this.spinner._stop(); | ||
if (error instanceof Error) { | ||
console.error(chalk_1.default.red("error ") + error.message); | ||
} | ||
else | ||
console.error(chalk_1.default.red("error ") + error); | ||
// eslint-disable-next-line unicorn/no-process-exit | ||
process.exit(1); | ||
} | ||
@@ -289,0 +282,0 @@ }); |
{ | ||
"name": "ultra-runner", | ||
"description": "Smart and beautiful script runner that hijacks any `npm run`, `yarn` and `npx` calls for ultra fast execution", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"main": "lib/index.js", | ||
@@ -78,11 +78,11 @@ "repository": "http://github.com/folke/ultra-runner", | ||
"@types/cross-spawn": "6.0.1", | ||
"@types/eslint": "6.1.8", | ||
"@types/eslint": "6.1.9", | ||
"@types/eslint-plugin-prettier": "2.2.0", | ||
"@types/jest": "25.1.4", | ||
"@types/jest": "25.1.5", | ||
"@types/json5": "0.0.30", | ||
"@types/node": "13.9.5", | ||
"@types/prettier": "1.19.1", | ||
"@types/node": "13.11.0", | ||
"@types/prettier": "2.0.0", | ||
"@types/rimraf": "3.0.0", | ||
"@types/sinon": "7.5.2", | ||
"@types/sinon-chai": "3.2.3", | ||
"@types/sinon": "9.0.0", | ||
"@types/sinon-chai": "3.2.4", | ||
"@types/standard-version": "7.0.0", | ||
@@ -92,7 +92,7 @@ "@types/wrap-ansi": "3.0.0", | ||
"@types/yargs": "15.0.4", | ||
"@typescript-eslint/eslint-plugin": "2.25.0", | ||
"@typescript-eslint/parser": "2.25.0", | ||
"@typescript-eslint/eslint-plugin": "2.26.0", | ||
"@typescript-eslint/parser": "2.26.0", | ||
"builtin-modules": "3.1.0", | ||
"chai": "4.2.0", | ||
"clinic": "5.0.0", | ||
"clinic": "5.0.1", | ||
"conventional-changelog-cli": "2.0.31", | ||
@@ -104,5 +104,5 @@ "coveralls": "3.0.11", | ||
"eslint-plugin-chai-expect": "2.1.0", | ||
"eslint-plugin-import": "2.20.1", | ||
"eslint-plugin-import": "2.20.2", | ||
"eslint-plugin-jest": "23.8.2", | ||
"eslint-plugin-node": "11.0.0", | ||
"eslint-plugin-node": "11.1.0", | ||
"eslint-plugin-prettier": "3.1.2", | ||
@@ -112,3 +112,3 @@ "eslint-plugin-promise": "4.2.1", | ||
"husky": "4.2.3", | ||
"jest": "25.2.3", | ||
"jest": "25.2.6", | ||
"markdownlint-cli": "0.22.0", | ||
@@ -120,3 +120,3 @@ "prettier": "2.0.2", | ||
"standard-version": "7.1.0", | ||
"ts-jest": "25.2.1", | ||
"ts-jest": "25.3.0", | ||
"ts-node": "8.8.1", | ||
@@ -128,3 +128,3 @@ "typescript": "3.8.3", | ||
"ansi-split": "^1.0.1", | ||
"chalk": "^3.0.0", | ||
"chalk": "^4.0.0", | ||
"cross-spawn": "^7.0.1", | ||
@@ -139,3 +139,2 @@ "fast-glob": "^3.2.2", | ||
"string-width": "^4.2.0", | ||
"strip-json-comments": "^3.0.1", | ||
"tslib": "1.11.1", | ||
@@ -142,0 +141,0 @@ "type-fest": "^0.12.0", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
210159
16
2177
+ Addedchalk@4.1.2(transitive)
- Removedstrip-json-comments@^3.0.1
- Removedchalk@3.0.0(transitive)
- Removedstrip-json-comments@3.1.1(transitive)
Updatedchalk@^4.0.0