veltman / flubber

Tools for smoother shape animations.
MIT License
6.57k stars 167 forks source link

Error: 'svgPathProperties' is not exported #108

Open prieston opened 4 years ago

prieston commented 4 years ago

In your code

node_modules/flubber/src/svg.js (2:9)
1: import Path from "svgpath";
2: import { svgPathProperties } from "svg-path-properties";
            ^
3: import normalizeRing from "./normalize.js";
4: import { isFiniteNumber } from "./math.js";

svPathProperties is not an exported name , the correct import is


2: import svgPathProperties from "svg-path-properties";
            ^
3: import normalizeRing from "./normalize.js";
4: import { isFiniteNumber } from "./math.js";```
andreas-trad commented 3 years ago

Any update on this one?