mirror of
https://github.com/0x5eal/terracotta.git
synced 2024-12-12 12:50:35 +00:00
13 lines
271 B
Text
13 lines
271 B
Text
local Bundler = require("bundler")
|
|
local Minifier = require("minifier")
|
|
|
|
export type Bundler = Bundler.BundlerExtended
|
|
export type Minifier = Minifier.MinfierExtended
|
|
|
|
local Darklua = {
|
|
bundler = Bundler,
|
|
minifier = Minifier,
|
|
__cmd = require("cmd"),
|
|
}
|
|
|
|
return Darklua
|