@heyhuynhgiabuu/pi-pretty 0.6.8 → 0.6.9

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/CHANGELOG.md +13 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.9] - 2026-06-21
4
+
5
+ ### Fixed
6
+
7
+ - **Published extension crash on Pi session start/resume** — `multi-grep` imports
8
+ `Type` from `typebox` at module load time, so the built extension executes
9
+ `require("typebox")` while Pi loads `dist/index.js`. The package did not declare
10
+ `typebox` as a runtime dependency, so clean published installs could crash before
11
+ session handlers ran.
12
+
13
+ Fix: added `typebox` as a direct dependency and refreshed the lockfile so clean
14
+ extension installs include the module.
15
+
3
16
  ## [0.6.8] - 2026-06-21
4
17
 
5
18
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heyhuynhgiabuu/pi-pretty",
3
- "version": "0.6.8",
3
+ "version": "0.6.9",
4
4
  "description": "Pretty terminal output for pi — syntax-highlighted file reads, colored bash output, tree-view directory listings, and more.",
5
5
  "keywords": [
6
6
  "pi",
@@ -37,7 +37,8 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@ff-labs/fff-node": "^0.9.4",
40
- "@shikijs/cli": "^4.0.2"
40
+ "@shikijs/cli": "^4.0.2",
41
+ "typebox": "1.1.38"
41
42
  },
42
43
  "devDependencies": {
43
44
  "@biomejs/biome": "^2.3.5",