UNPKG

wbf

Version:

[![LICENSE](https://img.shields.io/github/license/halodong/web-barrier-free?style=flat-square)](./LICENSE) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/halodong/web-barrier

23 lines (21 loc) 469 B
import ts from 'rollup-plugin-typescript2' import resolve from '@rollup/plugin-node-resolve' import postcss from 'rollup-plugin-postcss' import size from 'rollup-plugin-size' export default { input: './src/index.ts', output: [ { name: 'Wbf', file: 'dist/index.js', format: 'umd', sourcemap: true } ], plugins: [ ts({ declaration: false, module: 'ES6' }), resolve(), postcss(), size() ] }