0.1.3 • Published 5 years ago

@stembord/locales-bundler v0.1.3

Weekly downloads
1
License
(MIT OR Apache-2....
Repository
gitlab
Last release
5 years ago

ts-locales-bundler

locales bundler

locales/
  en/
    app.json
    error.json
  de/
    app.json
    error.json
const gulp = require("gulp"),
  localesBundler = require("@stembord/locales-bundler");

gulp.task("locales", () =>
  gulp
    .src("locales")
    .pipe(localesBundler({ flatten: true, minify: false }))
    .pipe(gulp.dest("build/locales"))
);