Skip to content

Commit 95e01a4

Browse files
committed
cleanup
1 parent 158e072 commit 95e01a4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

dist/svg-path-commander.cjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/svg-path-commander.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ <h1><a href="https://github.com/thednp/svg-path-commander">
127127
<script src="./svg-path-commander.js"></script>
128128

129129
<script>
130-
console.log('SVGPathCommander: ', SVGPathCommander);
130+
// console.log('SVGPathCommander: ', SVGPathCommander);
131131
const { pathToCurve, pathToString, roundPath, splitPath, reverseCurve, optimizePath } = SVGPathCommander,
132132
svg = document.getElementById('test-svg'),
133133
path = svg.children[0],

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
import SVGPathCommander from "./main";
44

5-
export default SVGPathCommander;
6-
75
export { default as CSSMatrix } from "@thednp/dommatrix";
86
export { arcTools } from "./math/arcTools";
97
export { bezierTools } from "./math/bezier";
@@ -82,3 +80,5 @@ export { default as roundSegment } from "./process/roundSegment";
8280
export { default as segmentToCubic } from "./process/segmentToCubic";
8381
export { default as shortenSegment } from "./process/shortenSegment";
8482
export { default as splitCubic } from "./process/splitCubic";
83+
84+
export default SVGPathCommander;

0 commit comments

Comments
 (0)