chore: Add example test

This commit is contained in:
Nelson Jovel 2024-01-11 09:41:42 -08:00
parent a2491aa512
commit b469558a21

View file

@ -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