An open API service indexing awesome lists of open source software.

https://github.com/nksaraf/elf

YAML syntax-based task runner
https://github.com/nksaraf/elf

task-runner typesc yaml

Last synced: 4 months ago
JSON representation

YAML syntax-based task runner

Awesome Lists containing this project

README

          

# elf
YAML syntax-based task runner

Runfile format
```yaml
deploy :
- print Deploying ${project}
- npm: run build
- npm: link

hello:
print: '${name}'

dev: watch deploy elf

env:
name: elf

path:
watch: npx nodemon --exec run
edit: code
```

Command to run:
```shell
run deploy proj
run watch npm run dev
run dev
run edit README.md
```