pi-lens 3.8.1 → 3.8.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/CHANGELOG.md +11 -1
- package/README.md +706 -706
- package/package.json +3 -3
- package/scripts/download-grammars.ts +78 -155
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to pi-lens will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [3.8.
|
|
5
|
+
## [3.8.2] - 2026-04-06
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **npm publish bump** — 3.8.1 was already published with the broken postinstall; 3.8.2 contains the actual fix.
|
|
9
|
+
|
|
10
|
+
## [3.8.1] - 2026-04-06
|
|
6
11
|
|
|
7
12
|
### Fixed
|
|
8
13
|
- **`console-statement` hijacking `no-console-in-tests`** — The keyword match for
|
|
@@ -13,6 +18,11 @@ All notable changes to pi-lens will be documented in this file.
|
|
|
13
18
|
patterns instead of a single union pattern `[...]`. Replaced with valid union syntax
|
|
14
19
|
and added `post_filter: check_secret_pattern` so variable names are actually filtered
|
|
15
20
|
against credential patterns. Reduced false positives from 58 → 0 on the codebase.
|
|
21
|
+
- **`postinstall` failing on Windows** — `scripts/` was accidentally in `.gitignore` so
|
|
22
|
+
`scripts/download-grammars.ts` was never committed. Added the script, which downloads
|
|
23
|
+
the 10 tree-sitter WASM grammars from unpkg at install time. Also fixed `|| true`
|
|
24
|
+
which is not valid on Windows cmd.exe — replaced with native Node TS execution via
|
|
25
|
+
`node --experimental-strip-types` (Node 22+, no extra deps).
|
|
16
26
|
|
|
17
27
|
## [3.8.0] - 2026-04-05
|
|
18
28
|
|