vue-hook-optimizer 0.0.67 → 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/README.md
CHANGED
package/dist/index.js
CHANGED
@@ -2006,16 +2006,18 @@ function getMermaidText(graph, nodesUsedInTemplate, nodesUsedInStyle = /* @__PUR
|
|
2006
2006
|
const direction = options.direction || "TB";
|
2007
2007
|
const usedNodes = /* @__PURE__ */ new Set([...nodesUsedInTemplate, ...nodesUsedInStyle]);
|
2008
2008
|
let mermaidText = `flowchart ${direction}
|
2009
|
+
%% Legend:
|
2010
|
+
%% () = variable node
|
2011
|
+
%% [] = function node
|
2012
|
+
%% * suffix = unused in template/style
|
2013
|
+
%% A --> B means A depends on B
|
2009
2014
|
`;
|
2010
2015
|
graph.nodes.forEach((node) => {
|
2011
|
-
const shape = node.type === "var" ?
|
2012
|
-
const
|
2013
|
-
|
2016
|
+
const shape = node.type === "var" ? "(" : "[";
|
2017
|
+
const closeShape = node.type === "var" ? ")" : "]";
|
2018
|
+
const unusedSuffix = !(usedNodes.has(node.label) || node.info?.used?.size) ? "*" : "";
|
2019
|
+
mermaidText += ` ${node.label}${shape}${node.label}${unusedSuffix}${closeShape}
|
2014
2020
|
`;
|
2015
|
-
if (style) {
|
2016
|
-
mermaidText += ` ${style}
|
2017
|
-
`;
|
2018
|
-
}
|
2019
2021
|
});
|
2020
2022
|
graph.edges.forEach((edge, key) => {
|
2021
2023
|
edge.forEach((to) => {
|