()
| 438 | // Check for corresponding localized json file in i18n |
| 439 | // Generate new version of the JSON schema file in dist/schema/<language_id>/<path> |
| 440 | const generateJsonSchemaLoc = () => { |
| 441 | return gulp.src(jsonSchemaFilesPatterns) |
| 442 | .pipe(generateLocalizedJsonSchemaFiles()) |
| 443 | .pipe(gulp.dest('dist')); |
| 444 | }; |
| 445 | |
| 446 | gulp.task('translations-generate', gulp.series(generateSrcLocBundle, generateAdditionalLocFiles, generateHtmlLoc, generateWalkthroughHtmlLoc, generateJsonSchemaLoc)); |
| 447 |
nothing calls this directly
no test coverage detected