Skip to content

Commit

Permalink
build: fix export fields or src access
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Jun 1, 2022
1 parent a56a2b4 commit dcf8227
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
"style": "./dist/components.css",
"types": "./dist/index.d.ts"
},
"./*": "./dist/*",
"./dist/*": "./dist/*"
"./src/*": "./src/*",
"./dist/*": "./dist/*",
"./*": "./dist/*"
},
"types": "dist/index.d.ts",
"sideEffects": "dist/components.css",
Expand Down
5 changes: 3 additions & 2 deletions packages/hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@
"style": "./dist/hooks.css",
"types": "./dist/index.d.ts"
},
"./*": "./dist/*",
"./dist/*": "./dist/*"
"./src/*": "./src/*",
"./dist/*": "./dist/*",
"./*": "./dist/*"
},
"sideEffects": "dist/hooks.css",
"files": [
Expand Down
5 changes: 3 additions & 2 deletions packages/table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@
"style": "./dist/table.css",
"types": "./dist/index.d.ts"
},
"./*": "./dist/*",
"./dist/*": "./dist/*"
"./src/*": "./src/*",
"./dist/*": "./dist/*",
"./*": "./dist/*"
},
"sideEffects": "dist/table.css",
"files": [
Expand Down

0 comments on commit dcf8227

Please sign in to comment.