Skip to content

Commit

Permalink
Fix explicit return type
Browse files Browse the repository at this point in the history
Signed-off-by: Marcos Candeia <marrcooos@gmail.com>
  • Loading branch information
mcandeia committed Nov 25, 2024
1 parent b17aecf commit f95633b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/mod.ts
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ import { join } from "@std/path";
import { build as tailwindBuild } from "./tailwind.ts";

const DECO_FOLDER = ".deco";
export const build = async () => {
export const build = async (): Promise<void> => {
await tailwindBuild();
const decoFolder = join(Deno.cwd(), DECO_FOLDER);
if (

0 comments on commit f95633b

Please sign in to comment.