Closed envin3 closed 6 months ago
package.json exports should be a relative path (https://webpack.js.org/guides/package-exports/).
"exports": "dist/index.js",
should be
"exports": "./dist/index.js",
This leads to compilations errors when included in jest testing.
@Destiner Any time to peek at this, ser?
Good catch, fixed in 6.0.6
6.0.6
package.json exports should be a relative path (https://webpack.js.org/guides/package-exports/).
"exports": "dist/index.js",
should be
"exports": "./dist/index.js",
This leads to compilations errors when included in jest testing.