(d, pkgPath)
| 288 | } |
| 289 | |
| 290 | function _initDirectory(d, pkgPath) { |
| 291 | return function(cb) { |
| 292 | if(common.doesDirExist(pkgPath)) { |
| 293 | cb(); |
| 294 | } else { |
| 295 | fs.mkdir(pkgPath, cb); |
| 296 | } |
| 297 | }; |
| 298 | } |
| 299 | |
| 300 | function _copyLicense(d, pkgPath) { |
| 301 | return function(cb) { |
no outgoing calls
no test coverage detected
searching dependent graphs…