diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-03-17 20:38:37 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-03-17 20:38:37 +0100 |
commit | 53ffab9e83cee8e9ed9c09965862e1fa2da40a88 (patch) | |
tree | 3384b9111c1e32f4d3f29fe21ae7f629d8665b29 /gulpfile.js | |
parent | a740335dd52552f22804c99d2d59c07c6c1895b0 (diff) |
gulpfile
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 17 |
1 files changed, 15 insertions, 2 deletions
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", @@ -183,6 +188,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 * all files piped into it. |