UNPKG

node-selendang

Version:

A lightweight and customizable reading progress bar library for web pages, designed to enhance user experience by indicating how much content remains.

30 lines (28 loc) 471 B
import typescript from '@rollup/plugin-typescript'; import scss from 'rollup-plugin-scss'; export default { input: "src/main.ts", output: [ { file: "dist/bundle.cjs.js", format: 'cjs', }, { file: "dist/bundle.es.js", format: 'es', }, { name: "Selendang", file: "dist/bundle.umd.js", format: 'umd', }, ], plugins: [ typescript(), scss({ output: `dist/bundle.min.css`, sourceMap: true, outputStyle: 'compressed' }) ] }