Hello everyone :wave: I'm encountering a `TypeErro...
# general
s
Hello everyone 👋 I'm encountering a
TypeError: c.g is not a function
error when attempting to run the
pulumi preview
command. It appears to be related to the
google-protobuf
package used by the
@pulumi/pulumi
package. I'm using TypeScript. Has anyone else experienced this issue? pulumi version of the lib that I am using: "@pulumi/pulumi": "^3.0.0", pulumi version of the program that is using that library and that is actually running preview "@pulumi/pulumi": "^3.113.0",
l
FYI I also got stuck with the same issue. I resolved it by adding
Copy code
"overrides": {
    "@pulumi/pulumi": {
      "google-protobuf": "3.21.4"
    }
}
to my package.json. This version override fixed the errors.
🚀 1
l
Hi I am still running into this issue even with after adding the override.
Any pointers would be appreciated
194 Views