0.1.5 • Published 4 years ago

baechli v0.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

MIT License

baechli

Description

A command-line tool that watches a folder's structure and, on files' changes, run commands in the order they are provided.

demo_animation

Installation and usage

The app can be found on npm and can therefore be installed with the following methods.

Global installation

To install the app globally, run this command in your terminal app:

npm install -g baechli

Then, to run the app, execute the following command:

baechli -c "command 1" "command 2" ...

Please refer to the description section for an example.

Local installation

To install the app locally (only for your current project), follow these steps:

  • make sure that you have a proper package.json file in your project;
  • open your terminal app and navigate to your project's directory;
  • execute the following command in your terminal app.
npm install --save-dev baechli

Then, to run the app, execute the following command:

npx baechli -c "command 1" "command 2" ...

Please refer to the description section for an example.