pi-diet 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/diet.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-diet",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "private": false,
5
5
  "description": "Compact oversized Pi tool results with transparent previews and spill files.",
6
6
  "type": "module",
package/src/diet.ts CHANGED
@@ -180,6 +180,7 @@ export function buildCompactedText(args: {
180
180
  `Preview: first ${settings.headChars} chars + last ${settings.tailChars} chars shown unless specialized`,
181
181
  `Omitted: ${omitted} chars`,
182
182
  `Full output: ${spillPath}`,
183
+ `Inspect with read or rg if needed.`,
183
184
  metadata.trimEnd(),
184
185
  buildPreview(analyze, settings),
185
186
  ].filter(Boolean).join("\n\n");