Skip to content

Commit

Permalink
Disallow utils import
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed May 20, 2021
1 parent 7c72e33 commit b2045d2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/material-ui-icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
"description": "Material Design icons distributed as SVG React components.",
"exports": {
".": "./lib/index.js",
"./*": "./lib/*.js"
"./*": "./lib/*.js",
"./utils/*": null
},
"publishConfig": {
"access": "public",
"exports": {
".": "./index.js",
"./*": "./*.js"
"./*": "./*.js",
"./utils/*": null
},
"type": "module"
},
Expand Down

0 comments on commit b2045d2

Please sign in to comment.