Skip to content

Commit

Permalink
fix(package): update web components component exports (#10955)
Browse files Browse the repository at this point in the history
* fix(package): update web components component exports
  • Loading branch information
kennylam authored Sep 22, 2023
1 parent f316c10 commit 8b188bf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Install xvfb
run: sudo apt-get install xvfb
- name: Run basic checks
run: xvfb-run --auto-servernum yarn lerna run --stream --prefix --scope=@carbon/ibmdotcom-web-components ci-check
run: xvfb-run --auto-servernum yarn lerna run --stream --prefix --verbose --scope=@carbon/ibmdotcom-web-components ci-check
a11y:
runs-on: ubuntu-latest
steps:
Expand Down
22 changes: 11 additions & 11 deletions packages/web-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
"license": "Apache-2.0",
"exports": {
"./dist/": "./dist/",
"./es/components-react/": {
"node": "./lib/components-react-node/",
"default": "./es/components-react/"
"./es/components-react/*": {
"node": "./lib/components-react-node/*",
"default": "./es/components-react/*"
},
"./es/components/": {
"node": "./lib/components/",
"default": "./es/components/"
"./es/components/*": {
"node": "./lib/components/*",
"default": "./es/components/*"
},
"./es/globals/": {
"node": "./lib/globals/",
"default": "./es/globals/"
"./es/globals/*": {
"node": "./lib/globals/*",
"default": "./es/globals/*"
},
"./es/": "./es/",
"./lib/": "./lib/",
"./es/": "./es/*",
"./lib/": "./lib/*",
"./custom-elements.json": "./custom-elements.json",
"./package.json": "./package.json"
},
Expand Down

0 comments on commit 8b188bf

Please sign in to comment.