npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

jstransformer-rollup

2.0.0

@robloach

npmHomeRepoSnykSocket
Downloads:16
$ npm install jstransformer-rollup
DailyWeeklyMonthlyYearly

jstransformer-rollup

Rollup support for JSTransformers.

Build Status Coverage Status Dependency Status Greenkeeper badge 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