From bcdb438541b6534891601d4a633227fb92a00eda Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Thu, 26 Mar 2026 15:23:29 -0400 Subject: [PATCH] fix(typescript): include @temporalio/proto for harness --- sdkbuild/typescript.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdkbuild/typescript.go b/sdkbuild/typescript.go index a3ce141f..72f45063 100644 --- a/sdkbuild/typescript.go +++ b/sdkbuild/typescript.go @@ -110,7 +110,7 @@ func BuildTypeScriptProgram(ctx context.Context, options BuildTypeScriptProgramO if err != nil { return nil, fmt.Errorf("cannot get absolute path from version path: %w", err) } - pkgs := []string{"activity", "client", "common", "plugin", "worker", "workflow"} + pkgs := []string{"activity", "client", "common", "proto", "plugin", "worker", "workflow"} for _, pkg := range pkgs { pkgPath := "link:" + filepath.Join(localPath, "packages", pkg) packageJSONDepStr += fmt.Sprintf(`"@temporalio/%v": %q,`, pkg, pkgPath)