Skip to content

Version 0.0.3

Compare
Choose a tag to compare
@egoist egoist released this 18 Dec 14:46
· 26 commits to 1.0 since this release

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