Hello I’m creating a multi language support pulumi...
# general
d
Hello I’m creating a multi language support pulumi sdk sdk in typescript . When I usung the command make generate to build the sdk by using pulumi provided generator.go file it’s overwriting the name of package.json for instance my package name @atmakur/pulumi-mymodule to @pulumi/pulumi-mymodule
e
I think you need to set "publisher" in the schema.json to "atmakur"
d
Hi, Thanks for your suggestion. I added the publisher to the schema.json but still same
e
Ah, found it, under the “language” section add “nodejs”: { “packageName”: <full package name> }
🙌 1
d
Thanks, it's worked 👍