@ai-ecoverse/biome-jsh 5.78.1 → 5.80.0

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/README.md +16 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -49,6 +49,22 @@ CI surfaces them inline.
49
49
  biome-jsh check skills/
50
50
  ```
51
51
 
52
+ ## Relationship to the in-app `biome` command
53
+
54
+ `biome-jsh` and the in-app wrapper share byte-aligned `.jsh`/`.bsh`
55
+ wrap/unwrap/span-shift helpers, but they are intentionally different frontends:
56
+
57
+ - `biome-jsh` runs the native `@biomejs/biome` binary and uses its normal upward
58
+ config discovery. The in-app command loads the WASM API and implements VFS
59
+ discovery plus an explicit `--config-path`.
60
+ - `biome-jsh check` and `lint` always request GitHub Actions annotations. The
61
+ in-app command converts the WASM API's HTML diagnostics to plain text.
62
+ - `biome-jsh` supports `check`, `lint`, `format`, and `format --write`; it does
63
+ not implement the in-app `format --check`, `--config-path`, or
64
+ `--stdin-file-path` flags. Use `biome-jsh check` for a format gate.
65
+ - `biome-jsh` exits `1` for errors, missing files, or unformatted files; warning
66
+ annotations alone do not fail it. The in-app command exits `1` for warnings too.
67
+
52
68
  ## Biome binary
53
69
 
54
70
  `@biomejs/biome` is a declared dependency but the binary is **resolved at
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-ecoverse/biome-jsh",
3
- "version": "5.78.1",
3
+ "version": "5.80.0",
4
4
  "description": "A jsh-aware Biome runner: lint/format .jsh/.bsh shell scripts (AsyncFunction bodies) without false return/await parse errors.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",