git ssb

0+

cel-desktop / ssb-pkg



Tree: 8f4b43a09aab9801bf28987edd59c2e366180327

Files: 8f4b43a09aab9801bf28987edd59c2e366180327 / 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