obriencj / pelican-inelegant

GitHub action and containerized Pelican theme
MIT License
2 stars 0 forks source link

css processing alternatives #5

Open obriencj opened 11 months ago

obriencj commented 11 months ago

currently used

import postcss from "gulp-postcss";
import magician from "postcss-font-magician";
import cssnano from "cssnano";
import postcssPresetEnv from "postcss-preset-env";
import rfs from "rfs";

postcss using the plugins

    postcssPresetEnv({ stage: 1 }),
    magician({}),
    rfs(),
    cssnano({
      preset: "default",
    }),

identify the stages and find alternatives

obriencj commented 11 months ago

https://github.com/lesscpy/lesscpy possibility