From 53ffab9e83cee8e9ed9c09965862e1fa2da40a88 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 17 Mar 2016 20:38:37 +0100 Subject: gulpfile --- gulpfile.js | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'gulpfile.js') diff --git a/gulpfile.js b/gulpfile.js index 66d14a086..65a5030b9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -31,13 +31,17 @@ const gulp = require("gulp"); const map = require("map-stream"); -const ts = require("gulp-typescript"); const zip = require("gulp-zip"); +const concat = require("gulp-concat"); +const gspawn = require("gulp-spawn"); +const gexec = require("gulp-exec"); +const ts = require("gulp-typescript"); +const debug = require("gulp-debug"); +const jsonTransform = require('gulp-json-transform'); const fs = require("fs"); const del = require("del"); const through = require('through2'); const File = require('vinyl'); -const jsonTransform = require('gulp-json-transform'); const paths = { ts: { @@ -68,6 +72,7 @@ const paths = { "AUTHORS", "README", "COPYING", + "Makefile", "gulpfile.js", "tsconfig.json", "package.json", @@ -182,6 +187,14 @@ gulp.task("pogenjs", [], function () { }); +/** + * Extract .po files from source code + */ +gulp.task("pogen", ["pogenjs"], function () { + throw Error("not implemented yet, use 'make pogen'"); +}); + + /** * Generate a tsconfig.json with the * given compiler options that compiles -- cgit v1.2.3