Skip to content

Commit

Permalink
build: add some additional exports for .md files
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Nov 24, 2024
1 parent 8a1f012 commit fcaebf7
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 5 deletions.
10 changes: 6 additions & 4 deletions packages/component-library-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./css": {
"types": "./dist/css.d.ts",
"import": "./dist/css.mjs"
},
"./dist/.jest-test-results.json": "./dist/.jest-test-results.json",
"./CONTRIBUTING.md": "./CONTRIBUTING.md",
"./CHANGELOG.md": "./CHANGELOG.md",
"./README.md": "./README.md",
"./README.nl.md": "./README.nl.md",
"./TESTING.md": "./TESTING.md",
"./dist": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
Expand Down
23 changes: 22 additions & 1 deletion packages/components-react/select-combobox-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,28 @@
"./css": {
"types": "./dist/css.d.ts",
"import": "./dist/css.mjs"
}
},
"./dist": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./dist/index": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./dist/index.mjs": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./dist/css": {
"types": "./dist/css.d.ts",
"import": "./dist/css.mjs"
},
"./dist/css.mjs": {
"types": "./dist/css.d.ts",
"import": "./dist/css.mjs"
},
"./README.md": "./README.md"
},
"files": [
"dist/",
Expand Down

0 comments on commit fcaebf7

Please sign in to comment.