From f850d75503a1fe48ff8d1a0eb704b076e2122b97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20=E2=80=9CAd=C3=A6dra=E2=80=9D=20Hamel?= Date: Thu, 27 Jun 2024 04:24:59 +0200 Subject: [PATCH] Remove bad `all` task --- bin/build.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/build.ts b/bin/build.ts index ddcc9e5..534c0d6 100644 --- a/bin/build.ts +++ b/bin/build.ts @@ -13,7 +13,6 @@ const wrapTask = (name: string, task: () => Promise) => async () => { }; const TASKS = { - all: wrapTask("all", () => fonts().then(images).then(svg).then(css).then(articles)), articles: wrapTask("articles", articles), css: wrapTask("css", css), fonts: wrapTask("fonts", fonts),