* Get the full path of the yarn-integrity file.
()
| 48036 | */ |
| 48037 | |
| 48038 | _getIntegrityFileLocation() { |
| 48039 | var _this = this; |
| 48040 | |
| 48041 | return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { |
| 48042 | const locationFolder = _this._getIntegrityFileFolder(); |
| 48043 | const locationPath = path.join(locationFolder, (_constants || _load_constants()).INTEGRITY_FILENAME); |
| 48044 | |
| 48045 | const exists = yield (_fs || _load_fs()).exists(locationPath); |
| 48046 | |
| 48047 | return { |
| 48048 | locationFolder, |
| 48049 | locationPath, |
| 48050 | exists |
| 48051 | }; |
| 48052 | })(); |
| 48053 | } |
| 48054 | |
| 48055 | /** |
| 48056 | * Get the list of the directories that contain our modules (there might be multiple such folders b/c of workspaces). |
no test coverage detected