UNPKG
tabby-dot-js
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
An easy-to-use js library to add tabby cats to your site
github.com/imRohan/tabbyjs
tabby-dot-js
/
rollup.config.js
17 lines
(15 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
, }), ], }