You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
358 B
16 lines
358 B
2 years ago
|
let postcss = require('postcss')
|
||
|
|
||
|
let processResult = require('./process-result')
|
||
|
let parse = require('./parser')
|
||
|
|
||
|
module.exports = function async(plugins) {
|
||
|
let processor = postcss(plugins)
|
||
|
return async input => {
|
||
|
let result = await processor.process(input, {
|
||
|
parser: parse,
|
||
|
from: undefined
|
||
|
})
|
||
|
return processResult(result)
|
||
|
}
|
||
|
}
|