2.0.0-0 • Published 5 years ago

broccoli-livescript v2.0.0-0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

broccoli-livescript

npm version Build Status Coverage Status

A Broccoli plugin to compile LiveScript

Installation

Use npm.

npm install --save-dev broccoli-livescript

API

const liveScript = require('broccoli-livescript');

liveScript(tree , options)

tree: string or Object (broccoli tree)
options: Object (directly passed to LiveScript options)
Return: Function

options.bare

Type: boolean
Default: false

Compile without the top-level function wrapper.

options.header

Type: boolean
Default: true

false removes "Generated by" header.

//Brocfile.js
const liveScript = require('broccoli-livescript');

module.exports = liveScript('scripts', {
  bare: true,
  header: false
});

License

Copyright (c) 2014 - 2018 Shinnosuke Watanabe

Licensed under the MIT LIcense.