@eiva/protoc-gen-fletcher 0.3.0-alpha → 0.3.2-alpha

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 +1 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -44,6 +44,7 @@ Two notes:
44
44
 
45
45
  - The leading `node -e mkdirSync(...)` ensures `src/generated/` exists before `protoc` runs — `protoc` does not auto-create its `--fletcher_out` directory, and `mkdir -p` is not portable to Windows.
46
46
  - No `--plugin=` flag is needed. `protoc` searches `PATH` (which npm prepends `node_modules/.bin/` to during script execution) for `protoc-gen-<name>` based on the `--<name>_out` flag, with the OS's executable-extension rules — so the `protoc-gen-fletcher.cmd` wrapper that npm writes alongside the bin shim is found correctly on Windows.
47
+ - `--fletcher_opt=ts` selects TypeScript output. Appending `ipc` (`--fletcher_opt=ts,ipc`) additionally writes one schema-only Arrow IPC stream file per message (`<stem>.<Message>.ipc`) — byte-identical to the schema bytes Fletcher providers announce at runtime, readable by any Arrow implementation.
47
48
 
48
49
  Then:
49
50
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eiva/protoc-gen-fletcher",
3
- "version": "0.3.0-alpha",
3
+ "version": "0.3.2-alpha",
4
4
  "description": "protoc plugin that generates typed TypeScript schema descriptors for Fletcher's positional wire format. Downloads the platform-matching native plugin binary from GitHub Releases on first invocation.",
5
5
  "license": "LGPL-3.0-or-later",
6
6
  "homepage": "https://github.com/eivacom/Fletcher/tree/main/protoc",