Fix real codegen bugs: unused proto import, missing runtime deps, no barrel index

protoc warned that print_job.proto imported template.proto without using it
- removed. ts-types/package.json was missing protobufjs and long, which the
ts-proto-generated code imports at runtime - tsc failed with 'cannot find
module'. src/index.ts also re-exports './generated' as a namespace, but
ts-proto wasn't configured to emit an index barrel file for it - added
outputIndex=true to the protoc invocation.

Verified with a clean 'bun run build' (both TS and Rust codegen) and
'tsc -b'.
This commit is contained in:
2026-08-28 18:36:23 +00:00
parent 660855ecd6
commit 34c7c97d4f
4 changed files with 8 additions and 4 deletions
-2
View File
@@ -2,8 +2,6 @@ syntax = "proto3";
package continuum.v1;
import "continuum/v1/template.proto";
enum PrintJobStatus {
PRINT_JOB_STATUS_UNSPECIFIED = 0;
PRINT_JOB_STATUS_QUEUED = 1;