@rayburst/cli 0.4.5 → 0.4.6

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.
@@ -944,8 +944,12 @@ async function analyzeProject(projectPath, projectId, onLog) {
944
944
  edges
945
945
  };
946
946
  log(" Checking for changed files vs remote...");
947
- const changedFiles = getChangedFilesVsRemote(projectPath);
948
- log(` Found ${changedFiles.length} changed files`);
947
+ const allChangedFiles = getChangedFilesVsRemote(projectPath);
948
+ log(` Found ${allChangedFiles.length} changed files`);
949
+ const changedFiles = allChangedFiles.filter((filePath) => {
950
+ return !filePath.includes("node_modules") && !filePath.includes(".test.") && !filePath.includes(".spec.") && (filePath.endsWith(".ts") || filePath.endsWith(".tsx") || filePath.endsWith(".js") || filePath.endsWith(".jsx"));
951
+ });
952
+ log(` Filtered to ${changedFiles.length} analyzed source files`);
949
953
  const changedFilesMetadata = [];
950
954
  for (const filePath of changedFiles) {
951
955
  try {
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ import {
9
9
  readLocalMeta,
10
10
  writeLocalAnalysis,
11
11
  writeLocalMeta
12
- } from "./chunk-5VOUWYVS.js";
12
+ } from "./chunk-X3T572UU.js";
13
13
  export {
14
14
  addGitignoreEntry,
15
15
  analyzeProject,
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  rayburstPlugin
3
- } from "./chunk-5VOUWYVS.js";
3
+ } from "./chunk-X3T572UU.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.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "Rayburst - Automatic code analysis for TypeScript/JavaScript projects via Vite plugin",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",