import { src, dest } from "gulp"; import postcss from "gulp-postcss"; import hashPath from "../hash.js"; export const css = () => src("src/index.css").pipe(postcss()).pipe(hashPath("css.manifest")).pipe(dest("dist/_assets/"));