(d, pkgPath)
| 298 | } |
| 299 | |
| 300 | function _copyLicense(d, pkgPath) { |
| 301 | return function(cb) { |
| 302 | fs.copy( |
| 303 | path.join(constants.pathToRoot, 'LICENSE'), |
| 304 | path.join(pkgPath, 'LICENSE'), |
| 305 | cb |
| 306 | ); |
| 307 | }; |
| 308 | } |
| 309 | |
| 310 | function _publishToNPM(d, pkgPath) { |
| 311 | return function(cb) { |
no outgoing calls
no test coverage detected
searching dependent graphs…