Skip to content

jstransformers/jstransformer-rollup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jstransformer-rollup

Rollup support for JSTransformers.

Build Status Coverage Status Dependency Status NPM version

Installation

npm install jstransformer-rollup

API

index.js

import rollup from './other-file'
rollup()

other-file.js

export default function rollup() {
  console.log('hi')
}
var rollup = require('jstransformer')(require('jstransformer-rollup'))

rollup.renderFileAsync('index.js', {
  // options here passed to rollup.rollup and bundle.generate
  // https://github.com/rollup/rollup/wiki/JavaScript-API
}).body
//=> 'function rollup() {\n  console.log('hi')\n}\nrollup()'

License

MIT