-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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(examples): fix in webpack3 examples #2561
Conversation
} | ||
]}], | ||
"lodash" | ||
["lodash", {"id": ["lodash", "semantic-ui-react"]}] |
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.
babel-plugin-direct-import
seems doesn't work at all 😞 Replaced with babel-plugin-lodash
@@ -7,34 +7,39 @@ | |||
"react": "^16.2.0", | |||
"react-dom": "^16.2.0", | |||
"semantic-ui-less": "^2.2.12", | |||
"semantic-ui-react": "^0.77.0" | |||
"semantic-ui-react": "^0.78.2" |
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.
Updated to latest SUIR 👍
"webpack-bundle-analyzer": "^2.10.0", | ||
"webpack-dev-server": "^2.11.1", | ||
"webpack-manifest-plugin": "^1.3.2", | ||
"webpack-merge": "^4.1.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.
Added missing deps and updated existing
@@ -1,5 +1,5 @@ | |||
@import '~heading.less'; | |||
|
|||
.container { | |||
margin-top: @relative64px; | |||
padding-top: @relative64px; |
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.
Wrong top
there was ⭐
Codecov Report
@@ Coverage Diff @@
## master #2561 +/- ##
=======================================
Coverage 99.74% 99.74%
=======================================
Files 160 160
Lines 2744 2744
=======================================
Hits 2737 2737
Misses 7 7 Continue to review full report at Codecov.
|
Tested locally, everything works as expected 👍 Merged |
Thanks for the fix!!! |
Released in |
It appears that in Semantic-Org#2561 the decision was made to switch to using babel-plugin-lodash, but the description of how direct imports are handled was not updated
Fixes #2559.