@openez-graph/cli 1.0.1 → 1.0.2
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.
- package/dist/CHANGELOG.md +12 -0
- package/dist/cli.cjs +67 -1148
- package/package.json +2 -1
package/dist/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.0.2] - 2026-08-08
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Graph build produced 0 symbol nodes and 0 edges** — `oxc-parser` (NAPI-RS native binding) was not declared in CLI `dependencies` and was not listed in tsup `external`, so `require("oxc-parser")` failed silently in the bundled CLI, falling back to line-based chunking with 0 symbols. Added `oxc-parser` to `dependencies` and `oxc-parser` + `@oxc-parser/binding-*` to tsup `external` so the native binding resolves from `node_modules` at runtime.
|
|
15
|
+
|
|
16
|
+
### Contributors
|
|
17
|
+
|
|
18
|
+
- **Asta Nguyen** — [@asta-nguyen](https://github.com/asta-nguyen)
|
|
19
|
+
- **JoeJoe** — [@JoeJoeflyn](https://github.com/JoeJoeflyn)
|
|
20
|
+
|
|
10
21
|
## [1.0.1] - 2026-08-08
|
|
11
22
|
|
|
12
23
|
### Changed
|
|
@@ -213,6 +224,7 @@ Remediation release — index/graph correctness, data protection, and web flow f
|
|
|
213
224
|
- Error handling and validation for import path extraction
|
|
214
225
|
- CLI npm packaging
|
|
215
226
|
|
|
227
|
+
[1.0.2]: https://github.com/asta-nguyen/openez-graph/compare/v1.0.1...v1.0.2
|
|
216
228
|
[1.0.1]: https://github.com/asta-nguyen/openez-graph/compare/v1.0.0...v1.0.1
|
|
217
229
|
[0.12.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.1...v0.12.0
|
|
218
230
|
[0.11.1]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.0...v0.11.1
|