blog/lib/tasks/css.ts

7 lines
232 B
TypeScript
Raw Normal View History

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/"));