* Generates an npm install command given a map of strings and a package name
(stringMappings, adapterNpmName, packageManager = "npm")
| 78 | * Generates an npm install command given a map of strings and a package name |
| 79 | */ |
| 80 | function generateInstallAdapterCommand(stringMappings, adapterNpmName, packageManager = "npm") { |
| 81 | return `${packageManager} ${getInstallCommand(packageManager)} ${adapterNpmName} ${getInstallOptions(stringMappings)}`; |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Gets the nearest npm_modules directory |
no test coverage detected