
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
luabundler
Advanced tools
CLI tool for bundling several Lua files into a single file.
If you're looking for an API, see luabundle
npm install -g luabundler
The bundle command takes an input Lua file, and recursively collects all the require()d modules and bundles them into a single output bundle.
luabundler bundle input.lua -p "/path/to/lua/?.lua" -o bundle.lua
If you don't specify an output file (-o), the resultant bundle will be printed to your terminal.
-p)In order to know where to look for required files, you must provide one or more search path patterns.
In addition to allowing you to add directories to search within, the pattern format allows you to configure supported file extensions as well.
For example, it's fairly common practice for Lua scripts written for Tabletop Simulator to use the .ttslua extension:
luabundler bundle input.lua -p "/path/to/lua/?.lua" -p "/path/to/mod/?.ttslua" -o bundle.lua
Additional bundle options are described with:
luabundler bundle --help
The unbundle command takes an input bundle, and splits it up into its original modules.
luabundler unbundle bundle.lua -o original_input.lua -m modules/
You may omit the -m option in order to simply output the root module and ignore all its require()'d dependencies i.e. if you already have them on disk.
Additional unbundle options are described with:
luabundler unbundle --help
FAQs
Bundles several Lua files into a single file.
We found that luabundler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.