Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

s-ol/moonscript-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

3 Commits

Repository files navigation

moonscript-loader

moonscript-loader is a webpack4 loader for compiling MoonScript to Lua. It is intended to be used with fengari.io/fengari-loader (but if you find another way to run Lua go ahead).

Example Setup

This is just an example setup - webpack is very flexible. Don't assume any of these extra dependencies are necessary.

install dependencies:

touch package.json && npm i --save-dev webpack webpack-dev-server fengari-loader fengari-web moonscript-loader html-webpack-plugin

set up your webpack config (webpack.config.js):

const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
 context: __dirname,
 entry: './toast.moon',
 mode: 'development',
 module: {
 rules: [
 {
 test: /\.moon$/,
 use: [
 'fengari-loader',
 'moonscript-loader',
 ]
 },
 ]
 },
 plugins: [
 new HtmlWebpackPlugin(),
 ],
}

write some Moonscript (toast.moon):

window = js.global
y = (x) -> x * 2
window.console\log y 14

run everything and visit http://localhost:8080 :)

node_modules/.bin/webpack-dev-server -w

About

moonscript-loader is a webpack4 loader for compiling MoonScript to Lua

Topics

Resources

Stars

Watchers

Forks

Packages

Contributors

AltStyle によって変換されたページ (->オリジナル) /