Licence
ISC
Version
0.1.0
Deps
0
Size
8 kB
Vulns
0
Weekly
0
package-sample
A sample node module package project.
About
This package is based on rollup-starter-lib package.
Scripts
npm run build builds the library to dist, generating three files:
dist/package-sample.cjs.jsA CommonJS bundle, suitable for use in Node.js, thatrequires the external dependency. This corresponds to the"main"field in package.jsondist/package-sample.esm.jsan ES module bundle, suitable for use in other people's libraries and applications, thatimports the external dependency. This corresponds to the"module"field in package.jsondist/package-sample.umd.jsa UMD build, suitable for use in any environment (including the browser, as a<script>tag), that includes the external dependency. This corresponds to the"browser"field in package.json
npm run build:dev builds the library, then keeps rebuilding it whenever the source files change using rollup-watch.