Skip to content

Releases: egoist/mkfile

Version 0.2.0

29 Jan 14:35
Compare
Choose a tag to compare

Upgrading to Babel 6 💥

Version 0.0.4

19 Dec 05:50
Compare
Choose a tag to compare

New feature:

  • Multi-line exec() short-hand
// multi-line exec() commands short-hand
source:
  >>>
  export PATH='$PATH:~/go'
  echo $PATH
  <<<

Version 0.0.31

18 Dec 15:22
Compare
Choose a tag to compare

fix bugs:

  • add missing dependency

updates:

  • strip comments after loading config file

Version 0.0.3

18 Dec 14:46
Compare
Choose a tag to compare

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?')