mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-22 16:19:48 +02:00
6341d4e4b5
* One-shot development * Move jsonp to module * Tooltip -> module * Remove d3.jsonp * Fix tooltip lint * Load all libs but d3 itself with require * Add top-level brfs * Unformat intro graph
12 lines
283 B
JavaScript
12 lines
283 B
JavaScript
import nodeResolve from 'rollup-plugin-node-resolve';
|
|
import commonjs from 'rollup-plugin-commonjs';
|
|
import json from 'rollup-plugin-json';
|
|
|
|
export default {
|
|
plugins: [
|
|
nodeResolve({ jsnext: true, main: true, browser: true }),
|
|
commonjs(),
|
|
json()
|
|
]
|
|
};
|