@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
@@ -9,7 +9,7 @@ import {
9
9
  readLocalMeta,
10
10
  writeLocalAnalysis,
11
11
  writeLocalMeta
12
- } from "./chunk-3SILTOFS.js";
12
+ } from "./chunk-5LBWVFGJ.js";
13
13
  export {
14
14
  addGitignoreEntry,
15
15
  analyzeProject,
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  rayburstPlugin
3
- } from "./chunk-3SILTOFS.js";
3
+ } from "./chunk-5LBWVFGJ.js";
4
4
  export {
5
5
  rayburstPlugin
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rayburst/cli",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Rayburst - Automatic code analysis for TypeScript/JavaScript projects via Vite plugin",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",