Skip to content

Commit

Permalink
chore: 각 패키지의 package.json에 export type 설정 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
musma-sujan7 committed Sep 30, 2024
1 parent 605fed0 commit 3029025
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .changeset/tidy-beans-drive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@musma/react-component": patch
"@musma/react-icons": patch
"@musma/react-utils": patch
---

chore: package.json의 exports에 type 설정 추가
3 changes: 2 additions & 1 deletion packages/react-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"exports": {
".": {
"import": "./dist/lib.es.js",
"require": "./dist/lib.umd.js"
"require": "./dist/lib.umd.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/lib.umd.js",
Expand Down
3 changes: 2 additions & 1 deletion packages/react-icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"exports": {
".": {
"import": "./dist/lib.es.js",
"require": "./dist/lib.umd.js"
"require": "./dist/lib.umd.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/lib.umd.js",
Expand Down
3 changes: 2 additions & 1 deletion packages/react-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"exports": {
".": {
"import": "./dist/lib.es.js",
"require": "./dist/lib.umd.js"
"require": "./dist/lib.umd.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/lib.umd.js",
Expand Down

0 comments on commit 3029025

Please sign in to comment.