mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-21 03:05:38 -05:00
Moved back pyscript.core where it belongs (#1622)
This commit is contained in:
committed by
GitHub
parent
c96f5912df
commit
a484aff457
20
pyscript.core/rollup/core-css.config.js
Normal file
20
pyscript.core/rollup/core-css.config.js
Normal 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);
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user