When I use a package that has a dependency on "@sindresorhus/is" in a Parcel build it complains that it can't find the module. This is because the package is marked as a module but is missing the main field in the package.json. I am currently working around this in my build by modifying your package.json in my node_modules folder to include the main field.
Solution
Could you please add the main field to you package.json as shown below?
Hi just to let you know.
Description
When I use a package that has a dependency on "@sindresorhus/is" in a Parcel build it complains that it can't find the module. This is because the package is marked as a module but is missing the main field in the package.json. I am currently working around this in my build by modifying your package.json in my node_modules folder to include the main field.
Solution
Could you please add the main field to you package.json as shown below?