Skip to content

Commit

Permalink
fix auto-prefixer in archetype component (#745)
Browse files Browse the repository at this point in the history
  • Loading branch information
didi0613 authored and jchip committed Mar 6, 2018
1 parent aa39e09 commit 72c4afe
Showing 1 changed file with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,12 @@ module.exports = function() {
: [];
},
stylus: {
use: () => {
return !cssModuleSupport
? [
autoprefixer({
browsers: ["last 2 versions", "ie >= 9", "> 5%"]
})
]
: [];
},
use: !cssModuleSupport ? [
autoprefixer({
browsers: ["last 2 versions", "ie >= 9", "> 5%"]
})
]
: [],
define: {
$tenant: process.env.ELECTRODE_TENANT || "walmart"
}
Expand Down

0 comments on commit 72c4afe

Please sign in to comment.