squishy

changeset 3
21a2d5205ec6
parent 2
297b51e0dba2
child 8
f62f83d9dc43
equal deleted inserted replaced
2:297b51e0dba2 3:21a2d5205ec6
1 1
2 -- Set this option, same as if user specified
3 -- '--executable' on the command-line. Can be
4 -- disabled by user with '--no-executable'
2 Option "executable" 5 Option "executable"
3 6
7 -- Output filename
4 Output "squish" 8 Output "squish"
5 9
10 -- This is normal/main script
6 Main "squish.lua" 11 Main "squish.lua"
7 12
8 -- Minify output 13 -- Add minify extension if asked to
9 if opts.with_minify then 14 if opts.with_minify then
10 Module "optlex" "minify/optlex.lua" 15 Module "optlex" "minify/optlex.lua"
11 Module "optparser" "minify/optparser.lua" 16 Module "optparser" "minify/optparser.lua"
12 Module "llex" "minify/llex.lua" 17 Module "llex" "minify/llex.lua"
13 Module "lparser" "minify/lparser.lua" 18 Module "lparser" "minify/lparser.lua"

mercurial