1.0.3 • Published 6 years ago
@jaebradley/example-rollup-library v1.0.3
example-rollup-library
Example rollup.js library.
Install
npm install @jaebradley/example-rollup-libraryAPI
Since this is an example library, there are three exported methods; a, b, and c. All they do is console.log "a", "b", and "c", respectively.
Usage
import {
a,
b,
c,
} from '@jaebradley/example-rollup-library';
a(); // console logs "a"
b(); // console logs "b"
c(); // you betCan also import like
import a from '@jaebradley/example-rollup-library/a';
import b from '@jaebradley/example-rollup-library/b';
import c from '@jaebradley/example-rollup-library/c';
a();
b();
c();