gulp-typescript-to-lua
v0.0.1
Published
Gulp plugin for TypescriptToLua
Downloads
2
Maintainers
Readme
gulp-typescript-to-lua
Transpiles Typescript to Lua with
TypescriptToLua
.
Issues with the transpiler should be reported on the TypescriptToLua
issue tracker.
Install
npm install -D gulp-typescript-to-lua
Usage
const gulp = require('gulp');
var tstl = require('gulp-typescript-to-lua');
exports.default = () => (
gulp.src('src/*.lua')
.pipe(tstl())
.pipe(gulp.dest('dist'))
);