@form8ion/rollup
v6.0.0
Published
form8ion plugin for managing rollup configuration in javascript projects
Readme
rollup
form8ion plugin for managing rollup configuration in javascript projects
Table of Contents
Usage
Installation
$ npm install @form8ion/rollup --save-prodExample
Import
import {dialects, projectTypes} from '@form8ion/javascript-core';Execute
(async () => {
await scaffold({projectRoot: process.cwd(), dialect: dialects.BABEL, projectType: projectTypes.PACKAGE});
})();API
scaffold
Scaffolder for configuring bundling of packages with Rollup
Takes a single options object as an argument, containing:
projectRoot string (required)
path to the root of the project
projectType string (required)
Chosen type of possible JavaScript project type
dialect string (required)
Chosen source JavaScript dialect of the project
Contributing
Dependencies
$ nvm install
$ npm installVerification
$ npm test