Nuke cache in 'nanoc:clean'

This commit is contained in:
0x1eef 2024-02-15 20:35:04 -03:00
parent 7da20dfcfa
commit 436060fc8a

View file

@ -5,6 +5,7 @@ namespace :nanoc do
desc "Clean the build/ directory" desc "Clean the build/ directory"
task :clean do task :clean do
Dir.chdir(cwd) do Dir.chdir(cwd) do
sh "rm -rf node_modules/.cache/"
sh "rm -rf build" sh "rm -rf build"
end end
end end