gulpfile
This commit is contained in:
parent
a740335dd5
commit
53ffab9e83
17
gulpfile.js
17
gulpfile.js
@ -31,13 +31,17 @@
|
|||||||
|
|
||||||
const gulp = require("gulp");
|
const gulp = require("gulp");
|
||||||
const map = require("map-stream");
|
const map = require("map-stream");
|
||||||
const ts = require("gulp-typescript");
|
|
||||||
const zip = require("gulp-zip");
|
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 fs = require("fs");
|
||||||
const del = require("del");
|
const del = require("del");
|
||||||
const through = require('through2');
|
const through = require('through2');
|
||||||
const File = require('vinyl');
|
const File = require('vinyl');
|
||||||
const jsonTransform = require('gulp-json-transform');
|
|
||||||
|
|
||||||
const paths = {
|
const paths = {
|
||||||
ts: {
|
ts: {
|
||||||
@ -68,6 +72,7 @@ const paths = {
|
|||||||
"AUTHORS",
|
"AUTHORS",
|
||||||
"README",
|
"README",
|
||||||
"COPYING",
|
"COPYING",
|
||||||
|
"Makefile",
|
||||||
"gulpfile.js",
|
"gulpfile.js",
|
||||||
"tsconfig.json",
|
"tsconfig.json",
|
||||||
"package.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
|
* Generate a tsconfig.json with the
|
||||||
* given compiler options that compiles
|
* given compiler options that compiles
|
||||||
|
@ -16,7 +16,11 @@
|
|||||||
"better-assert": "^1.0.2",
|
"better-assert": "^1.0.2",
|
||||||
"del": "^2.2.0",
|
"del": "^2.2.0",
|
||||||
"gulp": "^3.9.1",
|
"gulp": "^3.9.1",
|
||||||
|
"gulp-concat": "^2.6.0",
|
||||||
|
"gulp-debug": "^2.1.2",
|
||||||
"gulp-json-transform": "^0.3.0",
|
"gulp-json-transform": "^0.3.0",
|
||||||
|
"gulp-spawn": "^0.3.0",
|
||||||
|
"gulp-stream": "0.0.2",
|
||||||
"gulp-typescript": "^2.10.0",
|
"gulp-typescript": "^2.10.0",
|
||||||
"gulp-zip": "^3.1.0",
|
"gulp-zip": "^3.1.0",
|
||||||
"jed": "^1.1.0",
|
"jed": "^1.1.0",
|
||||||
|
Loading…
Reference in New Issue
Block a user