mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-08 14:58:14 -07: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
|