babel-plugin-livescript
v0.0.3
Published
Parse LiveScript and convert to Babel AST
Downloads
5
Readme
babel-plugin-livescript
Parse LiveScript and convert to Babel AST.
Installation
npm i --save-dev babel-plugin-livescript
Usage
.babelrc.js
module.exports = {
plugins: ['livescript']
}
Via CLI
babel --plugins livescript script.ls
Via Node API
require('babel-core').transform('code', {
plugins: ['livescript']
});