How to use the concat function from event-stream
Find comprehensive JavaScript event-stream.concat code examples handpicked from public code repositorys.
GitHub: ionic-team/ionic-site
43 44 45 46 47 48 49 50 51 52
cacheBust('server/pages/_includes/', 'head.html'), cacheBust('server/pages/_includes/', 'scripts.html'), ]; }; return es.concat(bustArray()); } function bustCacheAndReload(done) { bustCache().on('end', function () {
0
450
59
+ 5 other calls in file
26 27 28 29 30 31 32
basename: entry.name, extname: '.html' })) .pipe(gulp.dest('./html/')); }); return es.concat.apply(null, tasks); });
85
0
59
+ 7 other calls in file
55 56 57 58 59 60 61 62 63 64
updateFiles(streams, ".dll"); gutil.log('copying XMLs...') updateFiles(streams, ".XML"); gutil.log('copying PDBs...') updateFiles(streams, ".pdb"); return eventStream.concat.apply(null, streams); }); // create a zip file of all the .dll and .xml files gulp.task("zipDlls", ["copyDlls"], function() {
61
73
27
37 38 39 40 41 42 43 44 45
return gulp.src(config.globs.templates).pipe(gulp.dest(config.paths.templatesTemp)) }) gulp.task('copyPnpRootTemplate', () => { const src = gulp.src(path.join(config.paths.templatesTemp, 'root', '**', '*')) return es.concat(config.availableLanguages.map(lcid => { return src.pipe(gulp.dest(path.join(config.paths.templatesTemp, `root-${lcid}`))) })) })
15
30
12
+ 11 other calls in file
event-stream.merge is the most popular function in event-stream (2389 examples)