From 88d62536adeff36401ba7ff7f380ee478d8a3aac Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Mon, 18 Oct 2021 10:18:01 -0400 Subject: [PATCH] prettier taskfile task for tsc --- Taskfile.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index 8bea088..337dafb 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -6,7 +6,11 @@ vars: GREETING: Hello, World! tasks: - tsc: tsc + tsc: + cmds: + - tsc + - echo 🙌 typescript compilation successful + test: jest 'check:prettier': prettier --check .