-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Do not ignore story.js in prepublish #973
Conversation
This is causing an issue with addons-info as it ends up ignoring `Story.js` during compilation. Seems there are case-similar files in other addon packages called `story.js` that were supposed to be ignored from output... However, this seems like the quickest fix that doesn't really have an impact on other packages.
Codecov Report
@@ Coverage Diff @@
## master #973 +/- ##
==========================================
- Coverage 26.93% 26.72% -0.22%
==========================================
Files 192 192
Lines 4384 4427 +43
Branches 705 707 +2
==========================================
+ Hits 1181 1183 +2
- Misses 3203 3244 +41
Continue to review full report at Codecov.
|
@usulpro what do you think about merging PRs directly once you've tested and approved? https://github.com/storybooks/storybook/blob/master/CONTRIBUTING.md#reviewing-prs |
Thanks! @shilman Yes, sure! |
☁️ Nx Cloud ReportCI is running/has finished running commands for commit dcfaa74. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 1 targetSent with 💌 from NxCloud. |
This is causing an issue with addons-info as it ends up ignoring
Story.js
during compilation. Seems there are case-similar files in other addon packages calledstory.js
that were supposed to be ignored from output... However, this seems like the quickest fix that doesn't really have an impact on other packages.Issue:
What I did
Removed
story.js
from the ignored babel outputHow to test
Run
npm run prepublish
fromaddons-info
package.Story.js
is not included indist/
as expected.