How to use the i18next-scanner function in i18next-scanner

To help you get started, we’ve selected a few i18next-scanner examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github cncjs / cncjs / gulp / tasks / i18next.js View on Github external
gulp.task('i18next:web', () => {
        return gulp.src(webConfig.src)
            .pipe(sort()) // Sort files in stream by path
            .pipe(i18nextScanner(webConfig.options, customTransform))
            .pipe(gulp.dest(webConfig.dest));
    });
};
github cheton / webappengine / gulp / tasks / i18next.js View on Github external
gulp.task('i18next:app', () => {
        return gulp.src(appConfig.src)
            .pipe(i18nextScanner(appConfig.options, customTransform))
            .pipe(gulp.dest(appConfig.dest));
    });
    gulp.task('i18next:web', () => {

i18next-scanner

Scan your code, extract translation keys/values, and merge them into i18n resource files.

MIT
Latest version published 8 months ago

Package Health Score

66 / 100
Full package analysis

Popular i18next-scanner functions