diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-03-28 01:30:06 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-03-28 01:30:06 +0100 |
commit | 96cbfc2398ac28f2bb36fbfb2aae07ce6b8033d1 (patch) | |
tree | 302cdc4390c7889a06613b481476258366d41ef5 /gulpfile.js | |
parent | cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (diff) |
get pogen via npm registry
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gulpfile.js b/gulpfile.js index 5bd5ebaef..f4bc9b21e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -87,9 +87,6 @@ const paths = { "gulpfile.js", "manifest.json", "package.json", - "pogen/example/test.ts", - "pogen/pogen.ts", - "pogen/tsconfig.json", "src/i18n/*.po", "src/i18n/*.pot", "src/i18n/poheader", @@ -243,17 +240,6 @@ gulp.task("srcdist", [], function () { /** - * Compile po extraction script. - */ -gulp.task("pogenjs", [], function () { - var tsProject = ts.createProject("pogen/tsconfig.json"); - return tsProject.src() - .pipe(ts(tsProject)) - .pipe(gulp.dest("pogen")); -}); - - -/** * Extract .po files from source code */ gulp.task("pogen", function (cb) { |