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 CHANGED
@@ -41,6 +41,8 @@ We can find out some variables are isolated, and some methods are over-associati
41
41
  - [x] support `options api`
42
42
  - [x] [vscode extension](./packages/vscode)
43
43
  - [x] support `React`
44
+ - [x] eslint rules
45
+ - [x] mcp server
44
46
 
45
47
  ## Contribution
46
48
 
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" ? `((${node.label}))` : `{${node.label}}`;
2012
- const style = usedNodes.has(node.label) || node.info?.used?.size ? `style ${node.label} fill:#e1f5fe` : "";
2013
- mermaidText += ` ${node.label}${shape}
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) => {