-
-
Notifications
You must be signed in to change notification settings - Fork 1.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
-webkit-flex removed by uglifyjs #660
Comments
This thing is very weird. How uglifyjs is reletad to CSS? Do you use browserlist config file or just pass options to autoprefixer plugin? Do you use postcss-loader or postcss-loader? Can you show full webpack config? |
Passing browsers list as options. I'll post webpack config a bit later. My vaguish understanding of how it works is:
May be completely incorrect - this is based on casual read through. Writing that has given me some ideas to look into though |
@psimyn can you show your config? and how did you add Uglifyjs exactly? |
I've set up a sample repo showing the issue at https://github.com/psimyn/science/pull/1 - there are commands and sample output on the PR some webpack config sections:
Using node 4.x where I noticed this issue, sample repo is 5.something. Thanks for any info |
I think this is most likely due to webpack/webpack#283 I think passing Happy to close, but 💯 if you have any more insight edit: link to correct issue |
I had my loader configured for css-modules and added |
Doesn't webpack have Autoprefixer built in ? when then would you use postcss to load autoprefixer? |
We had some funny issue when using autoprefixer and extract-text-plugin (in production build). The problem was that browserslist (dependency component) didn't found the 'browserslist' file in the root of a project all the times because of some webpack internal. It did found it sometimes though - very strange. A solution to this was to explicitly set BROWSERSLIST_CONFIG environment variable to absolutely point to correct file (we just initiated the env variable in runtime actually). I know env variables aren't meant for initialising them in the code, but still i think that for this case, it was the best possible solution. I hope it helps anybody with similar problem, because it took me almost a day to figure this shit out :) |
Upgrade the css-loader version to |
I'm using "last 3 versions" with postcss-loader (with webpack). With nothing else, I get -webkit and -ms prefixed. But when enabling uglifyjs plugin, it only leaves -ms-flex and flex
If I increase the range of browsers (e.g '> 1%') then I get -webkit-box and -ms-flex, but still no webkit-flex
Tried playing around with flexbox option as well, but same result.
Thanks!
The text was updated successfully, but these errors were encountered: