This message was deleted.
# contribute
s
This message was deleted.
b
If i go and run
npm install
after I get that error, it basically reverts all my changes to the released version for that plugin
Am I missing something for getting a locally built provider to be used?
b
you need to
yarn link
the sdk
b
k
got it working
s
@brash-gigabyte-81569 run
yarn link
first in the directory that contains your local SDK (with the
package.json
. This basically registers it with yarn. Then, in the directory of your Pulumi program, run
yarn link @pulumi/eks
or whatever the name of the library is.
To test it, you should see
node_modules/@pulumi/eks
as a symlink to your local copy.
b
yep thats what I ended up seeing, the symlink in the one i put into the plugins directory was invalid, so i fixed it to my local copy and it works
thanks all
PR incoming
🎉 1
187 Views