(d, pkgPath)
| 308 | } |
| 309 | |
| 310 | function _publishToNPM(d, pkgPath) { |
| 311 | return function(cb) { |
| 312 | if(process.env.DRYRUN) { |
| 313 | console.log('dry run, did not publish ' + d.name); |
| 314 | cb(); |
| 315 | return; |
| 316 | } |
| 317 | exec('npm publish' + tag, {cwd: pkgPath}, cb).stdout.pipe(process.stdout); |
| 318 | }; |
| 319 | } |
no test coverage detected
searching dependent graphs…