mirror of
https://github.com/pshihn/planar-range.git
synced 2026-04-21 03:01:11 -04:00
13 lines
274 B
JavaScript
13 lines
274 B
JavaScript
import resolve from 'rollup-plugin-node-resolve';
|
|
import { terser } from "rollup-plugin-terser";
|
|
|
|
export default [
|
|
{
|
|
input: 'lib/planar-range.js',
|
|
output: {
|
|
file: 'lib/planar-range.min.js',
|
|
format: 'esm'
|
|
},
|
|
plugins: [resolve(), terser()]
|
|
}
|
|
]; |