tarantool / lua-bundler-webpack-plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lua Bundler Webpack Plugin

Bundle to single Lua file with content of bundle as big Lua table with next semantic:

{
  {
    is_entry: Boolean,
    body: String(content of file),
    mime: String(mime-type of file),
  }
}

Install

npm i -s @tarantool.io/lua-bundler-webpack-plugin

Custom options

bundleName - output bundle path in your build directory.

namespace - namespace of your module. You should place your files under namespace in your build for exclude clash of namespacing with other modules.

entryRegExp - regExp for using some js files as entry. It's used by @tarantool-front/core rocks as entry files.

lua - path to tarantool. By default we assume that you need install tarantool and it's accessible in your $PATH. We use some built-in modules in our packer.

Example

plugins: [
....
new LuaBundlePlugin({bundleName: 'customBundleName.lua', namespace: 'cluster', entryRegExp: /main.+js$/})
]

Defaults

bundleName = 'bundle.lua'
namespace = ''
entryRegExp = /main.+js$/
lua = 'tarantool'

Debug

DEBUG='lua-bundler' npm run build

About


Languages

Language:Lua 58.8%Language:JavaScript 41.2%