UNPKG

web-barrier-free

Version:

[![LICENSE](https://img.shields.io/github/license/bubkoo/html-to-image?style=flat-square)](./LICENSE) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/karma-runner/karma-cover

21 lines (19 loc) 417 B
import ts from 'rollup-plugin-typescript2' import resolve from '@rollup/plugin-node-resolve' import postcss from 'rollup-plugin-postcss' 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() ] }