mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
8 lines
159 B
Ruby
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
|