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
- Host: GitHub
- URL: https://github.com/nksaraf/elf
- Owner: nksaraf
- Created: 2019-07-06T00:34:21.000Z (almost 7 years ago)
- Default Branch: runner
- Last Pushed: 2022-12-04T07:39:31.000Z (over 3 years ago)
- Last Synced: 2025-10-25T17:37:30.563Z (8 months ago)
- Topics: task-runner, typesc, yaml
- Language: TypeScript
- Homepage:
- Size: 388 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
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
```