fix postcss api change (breaking semver?)
This commit is contained in:
parent
4b2a47fac7
commit
bfcb23ee74
1 changed files with 2 additions and 2 deletions
|
@ -112,8 +112,8 @@ async function buildCss() {
|
|||
const cssMainFile = path.join(projectDir, "src/ui/web/css/main.css");
|
||||
const preCss = await fs.readFile(cssMainFile, "utf8");
|
||||
const cssBundler = postcss([postcssImport]);
|
||||
const postCss = await cssBundler.process(preCss, {from: cssMainFile});
|
||||
await fs.writeFile(path.join(targetDir, "brawl.css"), postCss, "utf8");
|
||||
const result = await cssBundler.process(preCss, {from: cssMainFile});
|
||||
await fs.writeFile(path.join(targetDir, "brawl.css"), result.css, "utf8");
|
||||
}
|
||||
|
||||
|
||||
|
|
Reference in a new issue