Skip to content

Commit 8a33234

Browse files
authored
Merge pull request #3 from francisco-alejandro/async-process
Await from postcss process
2 parents 612575f + cdb3466 commit 8a33234

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = (options = { plugins: [] }) => ({
2828

2929
const css = await readFile(sourceFullPath);
3030

31-
const result = postcss(options.plugins).process(css, {
31+
const result = await postcss(options.plugins).process(css, {
3232
from: sourceFullPath,
3333
to: tmpFilePath,
3434
});

0 commit comments

Comments
 (0)