Dashboard/lib/tasks/dashboard_tasks.rake
2024-01-11 09:41:42 -08:00

8 lines
159 B
Ruby

namespace :dashboard do
desc "Explaining what the task does"
task :example do
# Task goes here
puts "compiling css"
`yarn build:css`
end
end