has anyone tried creating a typescript provider, t...
# package-authoring
e
has anyone tried creating a typescript provider, that implements methods on a resource? I'm currently getting this wonderful error:
Missing <engine> address
I've traced the error message to here: https://github.com/pulumi/pulumi/blob/2dfea8fd59eddb8f4c7e0ec1ceac712e34585bff/sdk/nodejs/provider/server.ts#L493 Which is called by this method: https://github.com/pulumi/pulumi/blob/2dfea8fd59eddb8f4c7e0ec1ceac712e34585bff/sdk/nodejs/provider/server.ts#L377 Everything else with my provider works, just not this bit. Example code is here: https://github.com/david-driscoll/pulumi-onepassword/blob/main/examples/simple/index.ts#L121-L137