tsvert
Version:
Tsvert is an Open Source Software Library to convert TSV to various data formats which is JSON and SQL insert statement and popular programming languages(PHP, Python, Ruby) array associative written in JavaScript. Tsvert is supposed to work in both Node.j
23 lines (18 loc) • 481 B
JavaScript
var gulp = require('gulp');
var uglify = require('gulp-uglify');
var concat = require('gulp-concat');
var preserveFirstComment = function() {
var set = false;
return function() {
if (set) return false;
set = true;
return true;
};
};
gulp.task('uglify', function() {
gulp.src('lib/tsvert.js')
.pipe(uglify({preserveComments: preserveFirstComment()}))
.pipe(concat('tsvert.min.js'))
.pipe(gulp.dest('.'));
});
gulp.task('default', ['uglify']);