Skip to content

Commit 8cc212f

Browse files
authored
Fix missing runtime dependency on protobufjs (#187)
This dependency is used at runtime in the `generated/` files, but it's not explicitly specified. This can break consumption with strict package managers like pnpm, or Yarn PnP.
1 parent b5f8ca8 commit 8cc212f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"node": ">=12"
3333
},
3434
"dependencies": {
35-
"@grpc/grpc-js": "^1.7.0"
35+
"@grpc/grpc-js": "^1.7.0",
36+
"protobufjs": "7.4.0"
3637
},
3738
"devDependencies": {
3839
"@grpc/proto-loader": "^0.7.0",

0 commit comments

Comments
 (0)