vue-hook-optimizer 0.0.46 → 0.0.48
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -2058,7 +2058,7 @@ function gen(graph, usedNodes) {
|
|
|
2058
2058
|
suggestions.push({
|
|
2059
2059
|
type: "error" /* error */,
|
|
2060
2060
|
message: `There is a loop call in nodes [${hasCycleResult.cycleNodes.map((node) => node.label).join(",")}], perhaps you can refactor it.`,
|
|
2061
|
-
nodeInfo:
|
|
2061
|
+
nodeInfo: hasCycleResult.cycleNodes
|
|
2062
2062
|
});
|
|
2063
2063
|
}
|
|
2064
2064
|
const paths = findLinearPaths(g);
|