summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-03-17 20:38:37 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-03-17 20:38:37 +0100
commit53ffab9e83cee8e9ed9c09965862e1fa2da40a88 (patch)
tree3384b9111c1e32f4d3f29fe21ae7f629d8665b29 /gulpfile.js
parenta740335dd52552f22804c99d2d59c07c6c1895b0 (diff)
downloadwallet-core-53ffab9e83cee8e9ed9c09965862e1fa2da40a88.tar.gz
wallet-core-53ffab9e83cee8e9ed9c09965862e1fa2da40a88.tar.bz2
wallet-core-53ffab9e83cee8e9ed9c09965862e1fa2da40a88.zip
gulpfile
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js17
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.