blog/lib/tasks/css.ts
Thibault “Adædra” Hamel f85d4d562e Explode gulpfile
* Import TypeScript
* Explode gulpfile into smaller files
* Actual CSS and Font (incomplete) file cache buster
2024-06-21 21:17:32 +02:00

7 lines
232 B
TypeScript

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