-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-global-css.mjs
31 lines (24 loc) · 898 Bytes
/
build-global-css.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import fs from "fs";
import postcss from "postcss";
// eslint-disable-next-line import/extensions
import postcssConfig from "./postcss.config.js";
const { readFile, unlink, writeFile } = fs.promises;
const main = async () => {
let sourcemap = process.argv[process.argv.length - 1];
if (sourcemap === "true") sourcemap = true;
else if (sourcemap === "false") sourcemap = false;
const pcss = await readFile("src/global.pcss");
const result = await postcss(postcssConfig.plugins).process(pcss, { from: "src/global.pcss", to: "static/global.css", map: sourcemap ? { inline: sourcemap === "inline" } : false });
await writeFile("static/global.css", result.css);
if (result.map) await writeFile("static/global.css.map", result.map.toString());
else {
try {
await unlink("static/global.css.map");
} catch (err) {
if (err.code !== "ENOENT") {
throw err;
}
}
}
};
main();