mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-06 19:31:41 +00:00
Update all dependencies, remove d3 from the greenkeeper ignore list
Also add a few workarounds for a few weird rollup v0.36 issues
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import * as d3 from 'd3';
|
||||
import { transition as d3transition } from 'd3-transition';
|
||||
import _ from 'lodash';
|
||||
|
||||
|
||||
@@ -13,6 +14,13 @@ export function Breathe() {
|
||||
timer;
|
||||
|
||||
|
||||
// This is a workaround for a bug in rollup v0.36
|
||||
// https://github.com/rollup/rollup/issues/984
|
||||
// The symbol for this default export is not used anywhere, but it
|
||||
// needs to be called in order to be included in the bundle.
|
||||
var t = d3transition();
|
||||
|
||||
|
||||
function ratchetyInterpolator(a, b, steps, units) {
|
||||
a = parseFloat(a);
|
||||
b = parseFloat(b);
|
||||
|
||||
Reference in New Issue
Block a user