Skip to content

Commit

Permalink
feat(linearprogress): expose package.json in conditional exports
Browse files Browse the repository at this point in the history
For those tools that access it directly, like Storybook
  • Loading branch information
jaketrent committed Apr 15, 2021
1 parent f5a475b commit 6b08678
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions packages/linearprogress/package.json
Expand Up @@ -22,10 +22,13 @@
"test:watch": "yarn test --watchAll"
},
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"node": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"node": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"dependencies": {
Expand Down

0 comments on commit 6b08678

Please sign in to comment.