gulp-ts2php
v1.2.0
Published
ts2php plugin for gulp
Downloads
8
Readme
gulp-ts2php
gulp-ts2php是一个调用ts2php将ts文件转化为php的gulp插件
Install
npm i gulp-ts2php--save-dev
Example
const ts2php = require('gulp-ts2php').ts2php;
const ts2phpConfig = require('./ts2phprc');
gulp.task('build:php', function () {
return gulp.src(['src/index.ts'])
.pipe(ts2php(ts2phpConfig))
.pipe(gulp.dest('dist'));
});