UNPKG

tabby-dot-js

Version:

An easy-to-use js library to add tabby cats to your site

17 lines (15 loc) 252 B
import eslint from '@rollup/plugin-eslint' export default { input: 'src/tabby.js', output: { name: 'Tabby', file: 'dist/tabby.js', format: 'umd', }, plugins: [ eslint({ fix: true, throwOnError: true, }), ], }