ultra-runner
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -5,2 +5,16 @@ # Changelog | ||
### [3.0.1](https://github.com/folke/ultra-runner/compare/v3.0.0...v3.0.1) (2020-03-26) | ||
### Bug Fixes | ||
* 🐛 terminal now properly updates changed lines ([d366be7](https://github.com/folke/ultra-runner/commit/d366be7b94106cf26281f56d64d175c08ef695cf)) | ||
### Other | ||
* **deps:** update dependency eslint-plugin-unicorn to v18 ([#49](https://github.com/folke/ultra-runner/issues/49)) ([a66a9ee](https://github.com/folke/ultra-runner/commit/a66a9eee7efb03555bc2e09b5e3cc91c5daaf259)) | ||
* **deps:** update dependency jest to v25.2.2 ([#47](https://github.com/folke/ultra-runner/issues/47)) ([2810354](https://github.com/folke/ultra-runner/commit/281035494e95a0dd5fd1ec379475b593d8f48835)) | ||
* ⚡️ set spinner interval to 120 instead of 80 ([6c916e9](https://github.com/folke/ultra-runner/commit/6c916e98508abac6b73c383f1e5163ec6115418d)) | ||
## [3.0.0](https://github.com/folke/ultra-runner/compare/v2.3.6...v3.0.0) (2020-03-25) | ||
@@ -7,0 +21,0 @@ |
@@ -49,3 +49,3 @@ "use strict"; | ||
: { | ||
interval: 80, | ||
interval: 120, | ||
frames: ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"], | ||
@@ -52,0 +52,0 @@ }; |
@@ -19,6 +19,4 @@ /// <reference types="node" /> | ||
str: string; | ||
leftStr: number; | ||
leftLen: number; | ||
} | undefined; | ||
update(text: string | string[]): string | undefined; | ||
} |
@@ -69,2 +69,4 @@ "use strict"; | ||
} | ||
else | ||
return; | ||
// Even idx is a non-ansi string, so add previous ansi string to result | ||
@@ -77,5 +79,3 @@ if (leftP > 0 && leftP % 2 == 0) { | ||
left: leftWidth, | ||
str: to.slice(left, -right), | ||
leftStr: left, | ||
leftLen: to.slice(left, -right).length, | ||
str: to.slice(left), | ||
} | ||
@@ -82,0 +82,0 @@ : undefined; |
{ | ||
"name": "ultra-runner", | ||
"description": "Smart and beautiful script runner that hijacks any `npm run`, `yarn` and `npx` calls for ultra fast execution", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"main": "lib/index.js", | ||
@@ -107,5 +107,5 @@ "repository": "http://github.com/folke/ultra-runner", | ||
"eslint-plugin-promise": "4.2.1", | ||
"eslint-plugin-unicorn": "17.2.0", | ||
"eslint-plugin-unicorn": "18.0.0", | ||
"husky": "4.2.3", | ||
"jest": "25.1.0", | ||
"jest": "25.2.2", | ||
"markdownlint-cli": "0.22.0", | ||
@@ -112,0 +112,0 @@ "prettier": "2.0.2", |
Sorry, the diff of this file is not supported yet
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
204717
2157