dolphins7.skeleton/twenty-frontend/tasks/nanoc.rake

17 lines
365 B
Ruby

namespace :nanoc do
desc "Produce the build/ directory"
task :build do
sh "nanoc co"
end
desc "Produce the build/ directory on-demand"
task watch: ['nanoc:build'] do
require "listen"
path = File.join(Dir.getwd, "src")
Listen.to(path) { sh "rake nanoc:build" }.start
sleep
rescue Interrupt
warn "SIGINT: exit"
exit
end
end