* Copy module into app's modules folder * * @return {Promise}
(app, cacheEntry)
| 240 | */ |
| 241 | |
| 242 | function copyModuleIntoApp (app, cacheEntry) { |
| 243 | logger.log(chalk.cyan('Copying ' + app.paths.modules)); |
| 244 | return cache.copy(cacheEntry, app.paths.modules); |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Add module to app's `./modules` folder. Default action is to copy. If |
no outgoing calls
no test coverage detected
searching dependent graphs…