1.0.3 • Published 4 years ago

@jaebradley/example-rollup-library v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

example-rollup-library

Greenkeeper badge Build Status Codecov npm npm

Example rollup.js library.

Install

npm install @jaebradley/example-rollup-library

API

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 bet

Can 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();
1.0.3

4 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago