From b469558a218b6750c9dae98dd7090078ea48a16b Mon Sep 17 00:00:00 2001 From: Nelson Jovel Date: Thu, 11 Jan 2024 09:41:42 -0800 Subject: [PATCH] chore: Add example test --- lib/tasks/dashboard_tasks.rake | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lib/tasks/dashboard_tasks.rake b/lib/tasks/dashboard_tasks.rake index 54066dc..57f67ee 100644 --- a/lib/tasks/dashboard_tasks.rake +++ b/lib/tasks/dashboard_tasks.rake @@ -1,4 +1,8 @@ -# desc "Explaining what the task does" -# task :dashboard do -# # Task goes here -# end +namespace :dashboard do + desc "Explaining what the task does" + task :example do + # Task goes here + puts "compiling css" + `yarn build:css` + end +end