UNPKG

dragee-widgets

Version:

Widgets Based on Dragee Library

23 lines (21 loc) 421 B
import babel from 'rollup-plugin-babel' import resolve from 'rollup-plugin-node-resolve' import commonjs from 'rollup-plugin-commonjs' export default [{ input: 'src/index.js', output: [ { file: 'dist/index.dev.js', format: 'iife', name: 'DrageeWidgets', sourcemap: 'inline' } ], plugins: [ babel({ exclude: 'node_modules/**' }), resolve(), commonjs() ] }]