Skip to content

Commit

Permalink
added exports with extensions to package.json exports
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJDufour committed Dec 6, 2022
1 parent 5a307be commit c45d0c4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,20 @@
"require": "./index.js",
"import": "./index.mjs"
},
"./index.js": "./index.js",
"./index.mjs":"./index.mjs",
"./find-tag-by-name": "./find-tag-by-name.js",
"./find-tag-by-name.js": "./find-tag-by-name.js",
"./find-tag-by-path": "./find-tag-by-path.js",
"./find-tag-by-path.js": "./find-tag-by-path.js",
"./find-tags-by-name": "./find-tags-by-name.js",
"./find-tags-by-name.js": "./find-tags-by-name.js",
"./find-tags-by-path": "./find-tags-by-path.js",
"./find-tags-by-path.js": "./find-tags-by-path.js",
"./get-attribute": "./get-attribute.js",
"./remove-comments": "./remove-comments.js"
"./get-attribute.js": "./get-attribute.js",
"./remove-comments": "./remove-comments.js",
"./remove-comments.js": "./remove-comments.js"
},
"files": [
"index.d.ts",
Expand Down

0 comments on commit c45d0c4

Please sign in to comment.