-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Add minified bundles to distribution #612
Comments
the sourcemaps are already external files, not sure how much space there is to save by removing the |
yeah, you're right, no need to remove those lines |
@adidahiya so is there any work to actually do here? are you asking for a |
@giladgray yeah, that's what I mean. Just a nice convenience if I want to include blueprint on a static site in production with a |
Thanks so much for bundling. The bundle is very useful for using in R. I see that this is a low priority, but if you get around to addressing the bundle, I think I discovered a small problem. It seems without
|
@timelyportfolio the bundles don't include any dependencies (those listed in |
great to know, thanks! |
@adidahiya is it reasonable to close this request? i remember reaching a decision that minifying should be the responsibility of the application, not the library, as they'll have plenty of their own code to production-ize too. |
No, I'm still interested in this, but it's low priority. We just need to run one extra webpack build for the CI deployment step. |
This came up again, but for CSS. I am trying to build an app with web workers where workers are allowed to load blueprint styles but we want to do some dynamic processing of the stylesheet before adding it to the real DOM. It would be helpful to have a |
Eh, actually, in the meantime, I can get by in webpack with test: /\.css$/,
use: "css-loader?" + JSON.stringify({ minimize: { discardComments: { removeAll: true } } }), bumping back down to P3. |
i would love to remove those comments from the published CSS file, so i'll look into a way to do it. |
Follow-up of #303, #588. Should not include sourcemaps.
The text was updated successfully, but these errors were encountered: