-
Notifications
You must be signed in to change notification settings - Fork 272
Conversation
mistercrunch
commented
Jul 28, 2020
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/superset/superset-ui/h0syolcfc |
6f955b5
to
a72a43c
Compare
@@ -28,7 +28,9 @@ | |||
"access": "public" | |||
}, | |||
"dependencies": { | |||
"@superset-ui/color": "^0.14.9", |
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.
@superset-ui/*
packages are normally peerDependencies
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.
ooops
Close and reopen to trigger CI |
Codecov Report
@@ Coverage Diff @@
## master #711 +/- ##
==========================================
+ Coverage 24.19% 24.30% +0.11%
==========================================
Files 339 339
Lines 7617 7759 +142
Branches 925 961 +36
==========================================
+ Hits 1843 1886 +43
- Misses 5701 5789 +88
- Partials 73 84 +11
Continue to review full report at Codecov.
|
@ktmud unclear why merging is blocked despite Will's approval. Looking to merge this. Side-thought: wondering if we want to proxy some sort of "utils" to make sure core visualizations are aligned on the version of I'm just afraid that many visualization would depend on misaligned pinned versions of commonly used libs and bloat the bundles sizes. |
@mistercrunch Agreed we should probably have a proxy for the common libraries. |
I hate to introduce yet another package Probably premature optimization... I'd be curious to see how many versions of |
That's what monorepo is used for. We do have only one In the async plugin world, we won't be able to control which libraries users bundle into their plugin, but we can provide this proxy to common libraries as part of the plugin API so plugins can reuse the libraries shipped with Superset (ECharts, D3, AntD, etc) and load faster. |
Nice! I didn't know the monorepo had all this magic happening. |