alexkuz/script-progress
Estimate script execution time
repo name | alexkuz/script-progress |
repo link | https://github.com/alexkuz/script-progress |
homepage | |
language | JavaScript |
size (curr.) | 8 kB |
stars (curr.) | 176 |
created | 2018-07-07 |
license | MIT License |
script-progress
A simple tool for heavy NPM/Yarn scripts that run for a long but roughly identical time. It’s not intended to be precise but gives you some sense of execution time.
Installation
yarn add script-progress
or
npm i script-progress
Example Usage
Change your build script in package.json
:
- "build": "react-scripts build",
+ "build-js": "react-scripts build",
+ "build": "script-progress yarn build-js",
or just
- "build": "react-scripts build",
+ "build": "script-progress react-scripts build",
The script will show a progress bar on the second and subsequent runs.