From e9b765a757b610ea970f80e7c0092bf4899acfa6 Mon Sep 17 00:00:00 2001 From: Giacomo Cavalieri Date: Thu, 21 Mar 2024 17:04:06 +0100 Subject: =?UTF-8?q?=F0=9F=94=80=20Add=20Tailwind=20support=20as=20an=20ext?= =?UTF-8?q?ernal=20tool.=20(#71)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * :sparkles: Add `lustre add tailwind` command * :sparkles: Add Tailwind bundling to `lustre build` command * ♻️ Use template for tailwind entry.css --- src/lustre.gleam | 1 + 1 file changed, 1 insertion(+) (limited to 'src/lustre.gleam') diff --git a/src/lustre.gleam b/src/lustre.gleam index 13c81a2..40b8059 100644 --- a/src/lustre.gleam +++ b/src/lustre.gleam @@ -210,6 +210,7 @@ pub fn main() { |> glint.with_name("lustre") |> glint.with_pretty_help(glint.default_pretty_help()) |> glint.add(at: ["add", "esbuild"], do: add.esbuild()) + |> glint.add(at: ["add", "tailwind"], do: add.tailwind()) |> glint.add(at: ["build", "app"], do: build.app()) |> glint.add(at: ["build", "component"], do: build.component()) |> glint.add(at: ["dev"], do: dev.run()) -- cgit v1.2.3