Moved back pyscript.core where it belongs (#1622)

This commit is contained in:
Andrea Giammarchi
2023-08-07 15:15:05 +02:00
committed by GitHub
parent c96f5912df
commit a484aff457
24 changed files with 224 additions and 36 deletions

View File

@@ -0,0 +1,20 @@
import postcss from "rollup-plugin-postcss";
export default {
input: "./src/core.css",
plugins: [
postcss({
extract: true,
sourceMap: false,
minimize: !process.env.NO_MIN,
plugins: [],
}),
],
output: {
file: "./core.css",
},
onwarn(warning, warn) {
if (warning.code === "FILE_NAME_CONFLICT") return;
warn(warning);
},
};