vue-hook-optimizer 0.0.68 → 0.0.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.js +9 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
@@ -1960,16 +1960,18 @@ function getMermaidText(graph, nodesUsedInTemplate, nodesUsedInStyle = /* @__PUR
|
|
1960
1960
|
const direction = options.direction || "TB";
|
1961
1961
|
const usedNodes = /* @__PURE__ */ new Set([...nodesUsedInTemplate, ...nodesUsedInStyle]);
|
1962
1962
|
let mermaidText = `flowchart ${direction}
|
1963
|
+
%% Legend:
|
1964
|
+
%% () = variable node
|
1965
|
+
%% [] = function node
|
1966
|
+
%% * suffix = unused in template/style
|
1967
|
+
%% A --> B means A depends on B
|
1963
1968
|
`;
|
1964
1969
|
graph.nodes.forEach((node) => {
|
1965
|
-
const shape = node.type === "var" ?
|
1966
|
-
const
|
1967
|
-
|
1970
|
+
const shape = node.type === "var" ? "(" : "[";
|
1971
|
+
const closeShape = node.type === "var" ? ")" : "]";
|
1972
|
+
const unusedSuffix = !(usedNodes.has(node.label) || node.info?.used?.size) ? "*" : "";
|
1973
|
+
mermaidText += ` ${node.label}${shape}${node.label}${unusedSuffix}${closeShape}
|
1968
1974
|
`;
|
1969
|
-
if (style) {
|
1970
|
-
mermaidText += ` ${style}
|
1971
|
-
`;
|
1972
|
-
}
|
1973
1975
|
});
|
1974
1976
|
graph.edges.forEach((edge, key) => {
|
1975
1977
|
edge.forEach((to) => {
|