[READ-ONLY] Mirror of https://github.com/thoda-dev/svg-lua. svg lua library
0

Configure Feed

Select the types of activity you want to include in your feed.

renamed minified file for require to work better

Thomas (Dec 7, 2018, 2:55 PM +0100) 709aaa9b 652f27c7

+2 -2
+1 -1
README.md
··· 36 36 37 37 ### minified version 38 38 39 - `svg.min.lua` generated with [Lua Minifier from Mothereff.in](https://mothereff.in/lua-minifier) 39 + `svg-min.lua` generated with [Lua Minifier from Mothereff.in](https://mothereff.in/lua-minifier) 40 40 41 41 ## Documentation 42 42
svg.min.lua svg-min.lua
+1 -1
test.lua
··· 1 1 -- INCLUDE THE CURRENT PATH FOR LUA AND REQUIRE THE LIB -- 2 2 -- DO NOT CHANGE THAT PART -- 3 3 package.path = package.path .. ";" .. "..\\?.lua" 4 - require "svg" 4 + require "svg-min" 5 5 -- END OF LIBRARY IMPORT -- 6 6 7 7 -- TEST IS STARTING HERE -- YOU CAN MODIFY IT --