Skip to content

Commit db1a859

Browse files
authored
Allow passing plugins to postcss
1 parent df497db commit db1a859

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/processCss.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ module.exports = function processCss(inputSource, inputMap, options, callback) {
186186
});
187187
}
188188
}),
189-
parserPlugin(parserOptions)
189+
parserPlugin(parserOptions),
190+
...(query.postcssPlugins || [])
190191
]);
191192

192193
if(minimize) {

0 commit comments

Comments
 (0)