Skip to content

Commit

Permalink
feat(formatters): add export entrypoint for utils (#2482)
Browse files Browse the repository at this point in the history
  • Loading branch information
P0lip authored Jun 9, 2023
1 parent d621f96 commit d4b883c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions packages/formatters/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,17 @@
"/dist"
],
"type": "commonjs",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"node": "./dist/index.node.js",
"default": "./dist/index.js"
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.node.js",
"default": "./dist/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.js"
}
},
"repository": {
"type": "git",
Expand Down

0 comments on commit d4b883c

Please sign in to comment.