UNPKG

array-move-multiple

Version:

Move multiple items in an array to a new position

18 lines (16 loc) 299 B
import resolve from 'rollup-plugin-node-resolve'; import babel from 'rollup-plugin-babel'; export default { input: 'index.js', output: { file: 'bundle.js', format: 'umd', name: 'bundle', }, plugins: [ resolve(), babel({ exclude: 'node_modules/**', }), ], };