mirror of
https://github.com/godotengine/godot-website.git
synced 2026-01-05 10:10:00 +03:00
9 lines
248 B
Ruby
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
|