perry-mitchell/webdav-client

Can not be imported with newer node versions

susnux opened this issue · 1 comments

susnux commented

The package can not be imported by some build tools and newer node versions, because the exports field of the package.json contain a folder mapping:

"./dist/": "./dist/"

This is deprecated since Node 14 and removed in Node 17. It should be replaced with:

"./dist/*": "./dist/*"

Related: #339