-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(web-components): specify files/dirs to include in package #6688
fix(web-components): specify files/dirs to include in package #6688
Conversation
✅ Deploy Preview for ibm-products-web-components ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for carbon-for-ibm-products ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6688 +/- ##
==========================================
+ Coverage 80.68% 80.71% +0.03%
==========================================
Files 397 397
Lines 12923 12940 +17
Branches 4286 4291 +5
==========================================
+ Hits 10427 10445 +18
+ Misses 2496 2495 -1
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
be14cc3
Closes #6674
Found another problem in the web component build setup, the
icons
directory was not being included in the build output which again resulted in the same bug originally described in #6674. Including thefiles
property in the package.json should fix this since theicons
directory will be included inside ofes
andlib
.Update
Changing the icon imports to
@carbon/web-components/es/icons/**/*
fixes the issue and allows us to remove the build plugins for transforming the icons since we really should just import them directly from the@carbon/web-components
package. Thanks @sangeethababu9223 for the suggestion! 💡What did you change?