tableexport
Version:
The simple, easy-to-implement library to export HTML tables to xlsx, xls, csv, and txt files
92 lines (76 loc) • 2.54 kB
JavaScript
var gulp = require("gulp"),
replace = require("gulp-replace"),
bump = require("gulp-bump"),
rename = require("gulp-rename"),
del = require("del"),
css = require("gulp-clean-css"),
js = require("gulp-uglify");
gulp.task("css", ["clean"], function() {
return gulp.src("./src/stable/css/tableexport.css")
.pipe(gulp.dest("./dist/css/"))
.pipe(css())
.pipe(rename({
suffix: ".min"
}))
.pipe(gulp.dest("./dist/css/"))
.pipe(gulp.dest("./src/stable/css/"));
});
gulp.task("js", ["clean"], function() {
return gulp.src("./src/stable/js/tableexport.js")
.pipe(gulp.dest("./dist/js/"))
.pipe(js({ output: { comments: /^!|@preserve|@license|@cc_on/i } }))
.pipe(rename({
suffix: ".min"
}))
.pipe(gulp.dest("./dist/js/"))
.pipe(gulp.dest("./src/stable/js/"));
});
gulp.task("bump-all", ["bump", "bump-js", "bump-css", "bump-typings", "bump-readme"]);
gulp.task("bump", function() {
return gulp.src(["./bower.json", "./package.json"])
.pipe(bump())
.pipe(gulp.dest("./"));
});
gulp.task("bump-js", function() {
return gulp.src(["src/stable/js/tableexport.js"])
.pipe(replace(/(v\d+\.\d+\.)(\d+)/g, function(matches, match1, match2) {
return match1 + (Number(match2) + 1);
}))
.pipe(replace(/(version: ["']\d+\.\d+\.)(\d+)/g, function(matches, match1, match2) {
return match1 + (Number(match2) + 1);
}))
.pipe(gulp.dest("src/stable/js/"))
.on("end", function() {
gulp.start("js");
});
});
gulp.task("bump-css", function() {
gulp.src(["src/stable/css/tableexport.css"])
.pipe(replace(/(v\d+\.\d+\.)(\d+)/g, function(matches, match1, match2) {
return match1 + (Number(match2) + 1);
}))
.pipe(gulp.dest("src/stable/css/"))
.on("end", function() {
gulp.start("css");
});
});
gulp.task("bump-typings", function() {
gulp.src(["dist/tableexport.d.ts"])
.pipe(replace(/(v\d+\.\d+\.)(\d+)/g, function(matches, match1, match2) {
return match1 + (Number(match2) + 1);
}))
.pipe(gulp.dest("dist/"));
});
gulp.task("bump-readme", function() {
gulp.src(["gitbook/README.md", "gitbook/READMEv3.md"])
.pipe(replace(/([/\[`]v?[124567890]\d*\.\d+\.)(\d+)/g, function(matches, match1, match2) {
return match1 + (Number(match2) + 1);
}))
.pipe(gulp.dest("gitbook/"));
});
gulp.task("clean", function() {
return del(["dist/css", "dist/js"]);
});
gulp.task("test", ["build"]);
gulp.task("build", ["css", "js"]);
gulp.task("default", ["build"]);