(cb)
| 31 | }; |
| 32 | |
| 33 | function bump(cb) { |
| 34 | gulp.src('./package.json') |
| 35 | .pipe(jsonEditor({ |
| 36 | revision: String( Date.now() ) |
| 37 | })) |
| 38 | .pipe(gulp.dest('./')); |
| 39 | |
| 40 | cb(); |
| 41 | } |
| 42 | |
| 43 | function coverage(cb) { |
| 44 | const cmd = util.format('./node_modules/.bin/nyc --reporter=html %s -T', options.nodeBin); |
nothing calls this directly
no test coverage detected
searching dependent graphs…