This repository was archived by the owner on Feb 9, 2026. It is now read-only.
v1.3.0
What's Changed
This release improves the handling of CLI queries containing the --raw flag to output the result as is. Two points have been optimized in particular:
-
Instead of a POJO, raw JSON is now outputted, so it can be piped into a file and be consumed by other scripts. This also means that there is no longer a depth limit for the output.
-
We added a
--prettyflag that can be used in combination with--rawto indent and properly space out the printed json.
Example of a pretty print result
hellhub planets --include="sector" --filters="name:@contains:creek" --raw --prettyThis will be the output generated by the CLI:
- refractor: replace bundlephobia badge with bundlejs by @fabio-nettis in #15
- feat: provide better raw output handling by @fabio-nettis in #16
Full Changelog: v1.2.6...v1.3.0
[ { "id": 197, "index": 196, // ... (properties ommited) "sector": { "id": 42, "index": 42, "name": "Severin", "createdAt": "2024-04-17T09:36:06.069Z", "updatedAt": "2024-04-17T13:57:02.665Z" } } ]