@rayburst/cli 0.3.2 → 0.3.3
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.
|
@@ -415,6 +415,9 @@ function createConfigBasedEdges(sourceNode, targetFilePaths, nodeMap, edges, edg
|
|
|
415
415
|
for (const targetFilePath of targetFilePaths) {
|
|
416
416
|
const targetNodes = findNodesInFile(targetFilePath, nodeMap);
|
|
417
417
|
for (const targetNode of targetNodes) {
|
|
418
|
+
if (targetNode.type !== "component") {
|
|
419
|
+
continue;
|
|
420
|
+
}
|
|
418
421
|
if (sourceNode.id === targetNode.id) {
|
|
419
422
|
continue;
|
|
420
423
|
}
|
package/dist/index.js
CHANGED
package/dist/vite-plugin.js
CHANGED