0.1.1 • Published 7 years ago

@nathanfaucett/locales-bundler v0.1.1

Weekly downloads
1
License
MIT
Repository
gitlab
Last release
7 years ago

js-locales-bundler

locales layout

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

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