git ssb

0+

cel-desktop / ssb-pkg



Tree: efcf9fd06b02fa9bcd28681b4c777224e19702bb

Files: efcf9fd06b02fa9bcd28681b4c777224e19702bb / test / test-79-npm / gulp / gulpfile.js

406 bytesRaw
1/* eslint-disable no-underscore-dangle */
2
3'use strict';
4
5var gulp = require('gulp');
6var concat = require('gulp-concat');
7
8gulp.task('default', function () {
9 gulp.src('gulp-concat-*.txt')
10 .pipe(concat('gulp-concat-out.txt', { newLine: '' }))
11 .on('data',
12 function (c) {
13 if (c._contents.toString() === '123456') {
14 (console._log_ || console.log)('ok');
15 }
16 }
17 );
18});
19

Built with git-ssb-web