Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.03 KB

README.md

File metadata and controls

43 lines (33 loc) · 1.03 KB

Run - The Simplest Build Tool on Earth

forked from do

Anti-features

  • No installation
  • No dependencies
  • No overhead (npm scripts have a nagging delay of a few miliseconds)

Installation

Copy run.sh to your project, customize it as needed.

Optional: add an alias

echo "alias run='./run.sh'" >> ~/.bash_aliases
source ~/.bashrc

Usage

1 argument

$ ./run.sh build
I am building

2+ arguments (with alias)

$ run deploy a b c
I am deploying with Arg 1=a Arg 2=b and Arg 3=c

Tips