We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Related: #47
Here is an example repo.
The repo has no .browserslistrc, therefore, according to ember-cli-autoprefixer's README, the browser list defined in targets.js will be used.
.browserslistrc
ember-cli-autoprefixer
targets.js
The example app contains some simple CSS div { display: flex }
div { display: flex }
The targets.js file contains a browsers list of just: ['ie 10'].
['ie 10']
When ember build --environment=production is run, one would expect to see the following output:
ember build --environment=production
div {display:-ms-flexbox; display:flex }
...but it is not.
Creating a .browserslistrc.js with ie 10 does produce the correct output (so that's fine).
.browserslistrc.js
ie 10
I went down a dependancy rabbit hole of ember-cli-autoprefixer -> broccoli-autoprefixer -> autoprefixer -> postcss -> browserlist
but I am non-the-wiser.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Related: #47
Here is an example repo.
The repo has no
.browserslistrc
, therefore, according toember-cli-autoprefixer
's README, the browser list defined intargets.js
will be used.The example app contains some simple CSS
div { display: flex }
The
targets.js
file contains a browsers list of just:['ie 10']
.When
ember build --environment=production
is run, one would expect to see the following output:div {display:-ms-flexbox; display:flex }
...but it is not.
Creating a
.browserslistrc.js
withie 10
does produce the correct output (so that's fine).I went down a dependancy rabbit hole of ember-cli-autoprefixer -> broccoli-autoprefixer -> autoprefixer -> postcss -> browserlist
but I am non-the-wiser.
The text was updated successfully, but these errors were encountered: