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:
Bryan Housel
2016-09-26 00:42:51 -04:00
parent b90c5459ab
commit e4509cc123
3 changed files with 27 additions and 13 deletions

View File

@@ -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);