Skip to content

Commit 42c3ecf

Browse files
committed
[JENKINS-66395] Add postcss step to npm build.
Otherwise some display elements (e.g. select) will not be correctly rendered on all browsers.
1 parent 4202516 commit 42c3ecf

File tree

4 files changed

+967
-34
lines changed

4 files changed

+967
-34
lines changed

etc/postcss.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = ctx => {
2+
return {
3+
plugins: {
4+
autoprefixer: {
5+
cascade: false
6+
},
7+
rtlcss: ctx.env === 'RTL' ? {} : false
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)