Do you know how errors are reported in Parcel plugins? I tried to use console.error/warn but it seems logs are overwritten if they run in the same process. Also, with the Webpack loader we mark files with errors as non-cacheable to make sure the bundler will recompile the file again (sometimes an error is fixed by modifying a different file), is there something similar with Parcel?
Do you know how errors are reported in Parcel plugins? I tried to use
console.error/warnbut it seems logs are overwritten if they run in the same process. Also, with the Webpack loader we mark files with errors as non-cacheable to make sure the bundler will recompile the file again (sometimes an error is fixed by modifying a different file), is there something similar with Parcel?