Removing console.logs

This commit is contained in:
Knut Sveidqvist
2024-08-06 15:14:34 +02:00
parent 41484b2272
commit 534cf32231
2 changed files with 1 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@mermaid-chart/mermaid",
"version": "11.0.0-b.59",
"version": "11.0.0-b.60",
"description": "Markdown-ish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
"type": "module",
"module": "./dist/mermaid.core.mjs",

View File

@@ -65,7 +65,6 @@ export const subroutine = async (parent: SVGAElement, node: Node) => {
];
if (node.look === 'handdrawn' || (node.look === 'neo' && !useGradient)) {
console.log('OXE points 1', points);
// @ts-ignore - rough is not typed
const rc = rough.svg(shapeSvg);
const options = userNodeOverrides(node, {});
@@ -88,7 +87,6 @@ export const subroutine = async (parent: SVGAElement, node: Node) => {
rect.attr('class', 'basic label-container').attr('style', cssStyles);
updateNodeBounds(node, rect);
} else {
console.log('OXE points 2', points);
const el = insertPolygonShape(shapeSvg, w, h, points);
if (nodeStyles) {
el.attr('style', nodeStyles);