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
Since Node.js 17, require("diff/lib/patch/create.js") throws an error.
node:internal/modules/cjs/loader:488
throw e;
^
Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: Package subpath './lib/patch/create.js' is not defined by "exports" in <CWD>\node_modules\diff\package.json
There is also a warning when doing this on Node.js 16
(node:16332) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./" in the "exports" field module resolution of the package at <CWD>\node_modules\diff\package.json.
Update this package.json to use a subpath pattern like "./*".
(Use `node --trace-deprecation ...` to show where the warning was created)
The text was updated successfully, but these errors were encountered:
fisker
changed the title
Can't import files in lib
Can't import files in lib/Feb 14, 2022
Since Node.js 17,
require("diff/lib/patch/create.js")
throws an error.There is also a warning when doing this on Node.js 16
The text was updated successfully, but these errors were encountered: