Releases: egoist/mkfile
Releases · egoist/mkfile
Version 0.2.0
Version 0.0.4
New feature:
- Multi-line exec() short-hand
// multi-line exec() commands short-hand
source:
>>>
export PATH='$PATH:~/go'
echo $PATH
<<<
Version 0.0.31
fix bugs:
- add missing dependency
updates:
- strip comments after loading config file
Version 0.0.3
Changes:
- Optional new lines between tasks
Before: (this still works)
taskA:
>echo lol
taskB:
>echo haha
After: (this works since v0.0.3)
taskA:
>echo lol
taskB:
>echo haha
Notice: Since this changes the indent in task block now matters, we use indent to identify the code block
- remove
@import
You don't have to import 'module'
in @import
block now, just import
as you are writing JavaScript:
import pify from 'pify'
import fs from 'fs'
log:
log('hi')
log('feel weird?')