Skip to content

Releases: egoist/mkfile

Version 0.2.0

Choose a tag to compare

@egoist egoist released this 29 Jan 14:35

Upgrading to Babel 6 💥

Version 0.0.4

Choose a tag to compare

@egoist egoist released this 19 Dec 05:50

New feature:

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

Version 0.0.31

Choose a tag to compare

@egoist egoist released this 18 Dec 15:22

fix bugs:

  • add missing dependency

updates:

  • strip comments after loading config file

Version 0.0.3

Choose a tag to compare

@egoist egoist released this 18 Dec 14:46

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