Files
godot-website/_plugins/minify-assets.rb
2024-06-03 10:16:30 +02:00

9 lines
248 B
Ruby

# Minify assets after each build
Jekyll::Hooks.register :site, :post_write do
puts "Minifying assets"
# Project path
site_path_from = File.join(Dir.pwd, "_site")
site_path_to = Dir.pwd
`minify -r -o #{site_path_to} #{site_path_from}`
end