2017-07-17 19:33:11 +00:00
|
|
|
-- pretty.init
|
|
|
|
-- In case somebody loads `init.lua`. Just redirects to `pretty.lua`.
|
|
|
|
|
2024-07-06 22:39:02 +00:00
|
|
|
local _VERSION = '0.5.2'
|
2024-07-06 21:40:28 +00:00
|
|
|
|
2017-07-17 19:33:11 +00:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
2017-07-17 11:36:56 +00:00
|
|
|
local premodule = (...)
|
|
|
|
if premodule == 'init' then premodule = '' end
|
2024-07-06 21:40:28 +00:00
|
|
|
local pretty = require (premodule .. (premodule ~= '' and '.' or '') .. 'pretty')
|
|
|
|
pretty._VERSION = _VERSION
|
|
|
|
return pretty
|