Hi I plan to test my node module from local; I navigate to the folder I need to link and did
npm link
This created a symlink locally. Then I navigate my project and did
npm link @account/api
Then I see the node module @accout/api under my project has been updated, I checked the /src, and it had my updates.
But after I run "npm run dev", I didn't see my update, it still used previous code. Any ideas about this issue? Thanks!