You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm encountering the following warning when running Vitest:
Sourcemap for ".../node_modules/vitest-fetch-mock/dist/index.js" points to missing source files
Look at what is distributed to NPM (as of version 0.4.3), this is flagging because dist/index.js.map has a sources value of ["../src/index.ts"], but this directory + file isn't shipped to NPM.
The text was updated successfully, but these errors were encountered:
Ah good point - I was on [email protected] to retain Vite v6 compatibility, but I actually don't need to be, and it goes away when depending on [email protected] (presumably because of it using Vite v5) - looks like this warning is still present with [email protected], so might be worth keeping open to see if this still happens with the final v3 vitest release?
I'm encountering the following warning when running Vitest:
Look at what is distributed to NPM (as of version
0.4.3
), this is flagging becausedist/index.js.map
has asources
value of["../src/index.ts"]
, but this directory + file isn't shipped to NPM.The text was updated successfully, but these errors were encountered: