Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.

Commit a4c3d57

Browse files
committed
Update exports
1 parent f81b927 commit a4c3d57

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.release-it.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
33
"github": {
4-
"release": true
4+
"release": true,
5+
"requireUpstream": false
56
}
67
}

src/index.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@ export { SmartBezierEdge } from "./SmartBezierEdge";
22
export { SmartStraightEdge } from "./SmartStraightEdge";
33
export { SmartStepEdge } from "./SmartStepEdge";
44
export { getSmartEdge } from "./getSmartEdge";
5-
export { svgDrawSmoothLinePath } from "./functions/drawSvgPath";
6-
export { pathfindingAStarDiagonal } from "./functions/generatePath";
5+
export {
6+
svgDrawSmoothLinePath,
7+
svgDrawStraightLinePath,
8+
} from "./functions/drawSvgPath";
9+
export {
10+
pathfindingAStarDiagonal,
11+
pathfindingAStarNoDiagonal,
12+
} from "./functions/generatePath";
713

814
export type { GetSmartEdgeOptions } from "./getSmartEdge";
915
export type { SVGDrawFunction } from "./functions/drawSvgPath";

0 commit comments

Comments
 (0)