0.0.1 • Published 4 years ago

gulp-typescript-to-lua v0.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

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'))
);