1.0.2 • Published 7 years ago

fly-peg v1.0.2

Weekly downloads
3
License
WTFPL
Repository
github
Last release
7 years ago

fly-peg

fly badge npm badge download badge travisbadge license badge

PEG.js plugin for Fly .

Install

This plugin requires Fly .

npm i -D fly-peg

Usage

Async/Await flavored:

export async function pasa () {
  await this
    .source('src/myParser.pegjs')
    .peg({ // PEG.js options
        optimize: 'speed'
      })
    .target('dist')
}

Generator function flavored:

exports.pasa = function* () {
  yield this
    .source('src/myParser.pegjs')
    .peg({ // PEG.js options
        optimize: 'speed'
      })
    .target('dist')
}

See PEG.js JavaScript API for PEG.js options .

License

Do What The F*ck You Want To Public License

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

8 years ago