How do I unwedge things? The config directory stil...
# general
a
How do I unwedge things? The config directory still has a node_modules subdir that seems to contain the right pulumi modules, so I'm a bit lost.
c
@alert-fish-36749 that directory is where all the plugins are stored
deleting it hence deletes the plugins.
a
okay, so how do I get them back?
pulumi new
seems to do something to populate those plugins, right?
c
these are installed with install hooks in NPM, so you’d need to run
npm install
or equivalent again.
Yeah, it runs
npm install
.
a
Got it, thanks. I'll go digging.