I ran `pulumi refresh` and then on the next `pulum...
# general
w
I ran
pulumi refresh
and then on the next
pulumi up
I am getting this error:
Copy code
Error: Cannot find module './servicequotas/index'
I don't have any servicequotas resources in my program. Where is this coming from?
Here's the full output.
q
do you make some import of the servicequotas module inside your index.ts?
check if this file exist node_modules/@pulumi/aws/servicequotas/index.d.ts
w
no have not imported servicequotas at all
checking for that file
yes it exists:
Copy code
> cat index.d.ts
export * from "./getService";
export * from "./getServiceQuota";
export * from "./serviceQuota";
q
try delete node_modules
and
Copy code
npm cache clean --force
then do:
Copy code
npm install
w
trying that
I'm getting a new (but similar) error
q
What nodejs version do you have?
w
i was on 12.9.1
just upgraded to 12.13.1 and it seems to be working now
👍 1