Skip to content

Commit

Permalink
Simplify exports
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbouchenoire committed Nov 29, 2021
1 parent 9f1a4ed commit 4d776ad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/symbolist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
],
"sideEffects": false,
"source": "./src/index.ts",
"main": "./dist/symbolist.js",
"module": "./dist/symbolist.module.js",
"modern": "./dist/symbolist.mjs",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"modern": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/symbolist.module.js",
"import": "./dist/symbolist.mjs",
"default": "./dist/symbolist.js"
"module": "./dist/index.module.js",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit 4d776ad

Please sign in to comment.