()
| 396 | // The destination filename will have ".md" extension replaced with: .nls.<language>.md |
| 397 | // For example, the Spanish translation of "walkthrough/doc.md" will be written to "dist/walkthrough/doc.nls.es.md". |
| 398 | const generateWalkthroughHtmlLoc = () => { |
| 399 | return gulp.src(walkthroughHtmlFilesPatterns) |
| 400 | .pipe(generateLocalizedWalkthroughHtmlFiles()) |
| 401 | .pipe(gulp.dest('dist')); |
| 402 | }; |
| 403 | |
| 404 | const generateLocalizedJsonSchemaFiles = () => { |
| 405 | return es.through(function (file) { |
nothing calls this directly
no test coverage detected