Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,16 @@ Options:
raw text
--entrypoint-rules <yaml...> extra entrypoint rules file(s), merged with the
shipped set; repeatable
--program <tsconfig...> restrict the run to these programs, named by
scope dir relative to --input ('<root>' for the
root program); repeatable
--list-programs list the discovered programs, one per line, and
exit
--emit-ir persist this shard's graph IR for a later
cross-shard stitch
--no-repo-sections skip artifacts/dependencies/unresolved_imports
(repo-scoped; compute them once per repository,
not once per shard)
-c, --cache-dir <dir> cache/intermediate directory
-v, --verbose increase verbosity (repeatable)
-h, --help display help for command
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeanalyzer-typescript",
"version": "1.2.0",
"version": "1.3.0",
"description": "CLDK TypeScript analyzer — emits the canonical schema v2 (additive CPG: symbol table → call graph → intraprocedural dataflow → interprocedural SDG) as analysis.json and Neo4j, via ts-morph.",
"type": "module",
"module": "src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
* the analyzer invalidates stale per-file Modules (whose source is unchanged but whose extracted
* shape may differ across analyzer versions).
*/
export const ANALYZER_VERSION = "1.2.0";
export const ANALYZER_VERSION = "1.3.0";
Loading