-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed as not planned
Labels
๐ no/externalThis makes more sense somewhere elseThis makes more sense somewhere else๐ phase/noPost cannot or will not be acted onPost cannot or will not be acted on
Description
Initial checklist
- I read the support docs
- I read the contributing guide
- I agree to follow the code of conduct
- I searched issues and couldnโt find anything (or linked relevant results below)
Problem
Missing "./package.json" in package.json "exports":
"exports": {
".": "./index.js",
"./internal-create-format-aware-processors": "./lib/util/create-format-aware-processors.js",
"./internal-extnames-to-regex": "./lib/util/extnames-to-regex.js"
},
Solution
Just add "./package.json" in package.json "exports" like that:
"exports": {
"./package.json": "./package.json",
".": "./index.js",
"./internal-create-format-aware-processors": "./lib/util/create-format-aware-processors.js",
"./internal-extnames-to-regex": "./lib/util/extnames-to-regex.js"
},
Alternatives
Just add "./package.json" in package.json "exports".
Metadata
Metadata
Assignees
Labels
๐ no/externalThis makes more sense somewhere elseThis makes more sense somewhere else๐ phase/noPost cannot or will not be acted onPost cannot or will not be acted on