8000 GitHub - skyllo/js-rollup-module: Rollup starter project with Rollup.JS, Jest and ESLint
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

skyllo/js-rollup-module

Repository files navigation

Rollup.JS Module Example

Using Rollup.JS, Jest, ESLint to create ES6/ES5 compatible JS modules with UMD. Check package.json for other dependencies.

Developing

yarn start

Testing

yarn testw

Building

yarn run build

Usage

// ES6
import { sayName } from 'Alpha';
sayName('Tyrion');

// ES5
<script src='./bundle.js'></script>
Alpha.sayName('Tyrion');

References

Releases

No releases published

Packages

No packages published
0