Skip to content

Commit

Permalink
Merge pull request #85 from Kitware/fix-package-exports
Browse files Browse the repository at this point in the history
fix(package): conditional export ordering
  • Loading branch information
floryst authored Nov 23, 2022
2 parents f4de1ed + ceb8995 commit bf6f64c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
"source": "src/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"browser": "./dist/cjs/react-vtk.js",
"umd": "./dist/umd/react-vtk.js",
"import": "./dist/esm/index.js",
"package.json": "./package.json",
"default": "./dist/esm/index.js"
},
"./light": {
"import": "./dist/esm/light.js",
"default": "./dist/esm/light.js",
"package.json": "./package.json"
"package.json": "./package.json",
"default": "./dist/esm/light.js"
}
},
"dependencies": {
Expand Down

0 comments on commit bf6f64c

Please sign in to comment.