You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
So #36 got me so I wanted to look through the source to figure out why and I saw this comment
-- @todo This function should be able to parse and use CVS files such as
-- gitignore. It should also work on the file tree rather than on the file list.
This is not what I'd want love-release to do, because the things I exclude from git are things like art and music that would bloat up the repo, and I don't think my game would be very good without art and music.
Possible alternate interface: have a love-release specific include/exclude list that just checks matches against normal lua patterns, so for example
t.releases.exclude = { "%.moon$" }
would exclude moonscript files and
t.releases.include = { "%.lua$", "^assets/" }
would only include either lua files or things in the assets dir
So #36 got me so I wanted to look through the source to figure out why and I saw this comment
This is not what I'd want love-release to do, because the things I exclude from git are things like art and music that would bloat up the repo, and I don't think my game would be very good without art and music.
Possible alternate interface: have a love-release specific include/exclude list that just checks matches against normal lua patterns, so for example
would exclude moonscript files and
would only include either lua files or things in the assets dir