(options, paths, dest)
| 84 | try_copy(options, path, dest) |
| 85 | |
| 86 | def uninstall(options, paths, dest): |
| 87 | for path in paths: |
| 88 | try_remove(options, path, dest) |
| 89 | |
| 90 | def package_files(options, action, name, bins): |
| 91 | target_path = os.path.join('lib/node_modules', name) |
no test coverage detected
searching dependent graphs…