1
0

Standard versioning
Some checks failed
LÖVE/Lua Library / Static-Analysis (push) Failing after 0s

This commit is contained in:
Jon Michael Aanes 2024-07-06 23:40:28 +02:00
parent 6b4de24f92
commit 0486b674fc
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -1,9 +1,12 @@
-- pretty.init
-- In case somebody loads `init.lua`. Just redirects to `pretty.lua`.
_VERSION = '0.5.0'
--------------------------------------------------------------------------------
local premodule = (...)
if premodule == 'init' then premodule = '' end
return require (premodule .. (premodule ~= '' and '.' or '') .. 'pretty')
local pretty = require (premodule .. (premodule ~= '' and '.' or '') .. 'pretty')
pretty._VERSION = _VERSION
return pretty