Skip to content

Commit 2ae7afc

Browse files
authored
Merge pull request #27 from jenkinsci/post-css
[JENKINS-66395] Add postcss step to npm build
2 parents 4c80abb + 4272d3e commit 2ae7afc

File tree

4 files changed

+1031
-52
lines changed

4 files changed

+1031
-52
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)