cognium-dev 3.197.0 → 3.198.0

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.
Files changed (2) hide show
  1. package/dist/cli.js +5 -1
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -45368,6 +45368,10 @@ async function analyze(code, filePath, language, options = {}) {
45368
45368
  return analyzeMarkupFile(code, filePath, options, language);
45369
45369
  }
45370
45370
  let parseGrammar = language;
45371
+ if (language === "tsx") {
45372
+ parseGrammar = "tsx";
45373
+ language = "typescript";
45374
+ }
45371
45375
  if (language === "javascript" || language === "typescript") {
45372
45376
  const lower = filePath.toLowerCase();
45373
45377
  if (lower.endsWith(".tsx") || lower.endsWith(".jsx")) {
@@ -46416,7 +46420,7 @@ var colors = {
46416
46420
  };
46417
46421
 
46418
46422
  // src/version.ts
46419
- var version = "3.197.0";
46423
+ var version = "3.198.0";
46420
46424
 
46421
46425
  // src/formatters.ts
46422
46426
  var LIBRARY_API_SURFACE_TAG2 = "library-api-surface:caller-responsibility";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cognium-dev",
3
- "version": "3.197.0",
3
+ "version": "3.198.0",
4
4
  "description": "Static Application Security Testing CLI for detecting security vulnerabilities via taint tracking",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -66,7 +66,7 @@
66
66
  },
67
67
  "dependencies": {
68
68
  "@cognium/project-profile-detect": "^1.1.0",
69
- "circle-ir": "^3.197.0"
69
+ "circle-ir": "^3.198.0"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@types/node": "^25.5.0",