()
| 89 | } |
| 90 | |
| 91 | async getFramework() { |
| 92 | const userPackageManager = await this.getUserPackageManager(); |
| 93 | return getFramework(this.projectRootPath, userPackageManager); |
| 94 | } |
| 95 | async getEndpointId() { |
| 96 | const pkgJsonPath = pathModule.join(this.projectRootPath, "package.json"); |
| 97 | const pkgBuffer = await fs.readFile(pkgJsonPath); |
nothing calls this directly
no test coverage detected