(cb)
| 47 | } |
| 48 | |
| 49 | function lint(cb) { |
| 50 | gulp.src(options.lintPaths) |
| 51 | .pipe(eslint()) |
| 52 | .pipe(eslint.formatEach()) |
| 53 | .pipe(eslint.failOnError()); |
| 54 | |
| 55 | cb(); |
| 56 | } |
| 57 | |
| 58 | function test(cb) { |
| 59 | const cmd = util.format('%s "%s" -T', options.nodePath, options.nodeBin); |
nothing calls this directly
no test coverage detected
searching dependent graphs…