Skip to content

BreadCity/blb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic Lua Bundler
No Tree Shaking
No fancy shit
Just bundles your code
Blazingly Fast (Build times are just a handful of milliseconds)
MIT

Creating BLB Projects

The best way to get started quickly with basic lua bundler is using create-blb: pnpm create blb (or npm init blb)
create-blb will guide you through the entire setup of blb automatically.

create-blb requires NodeJS >=18

Versions below Node 18 have not been tested.

Manual Setup

Prerequesites
  1. pnpm
  2. nodejs (preferably installed from pnpm env use --global latest) >= 18
  3. git
Installation
  1. Run pnpm i -D blb in your project
  2. Make sure your project has a package.json
  3. Add this to your package.json's scripts:
"build": "blb-prod",
"dev": "blb-dev"
  1. Create a src/index.lua file.
  2. Make sure you enter the bundler directory and run pnpm i

Note: Your entrypoint's parent dir is the only dir we look after. We do NOT bundle anything outside of it's parent dir.
Note 2: Only .lua files are bundled.
Note 3: you can require() directories if it has an index.lua inside.

Usage

command description
build builds into output/
dev starts a dev server, builds on request

Advanced Usage

Variables

You have some minimal variables available in your environment:

var description example
__filename the file's name in /src/a/b.lua: print(__filename) => a/b.lua
__dirname the directory's name require(__dirname..'/test')
__just_filename Just the filename by itself in /src/a/b.lua: print(__just_filename) => b.lua
__hash Hex hash of the file data print(__hash)
modules internal list of modles, avoid using unless hotfixing shit n / a

Package Managers

Putting files in src/packages/ makes them require()able without the packages/ portion.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published