SHA-256 hash of the requirements-prod.txt file contents.
()
| 209 | |
| 210 | /** SHA-256 hash of the requirements-prod.txt file contents. */ |
| 211 | function requirementsHash() { |
| 212 | const content = readFileSync(REQUIREMENTS_FILE, 'utf8'); |
| 213 | return createHash('sha256').update(content).digest('hex'); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Read the composite deps marker. Returns the parsed JSON object |
no outgoing calls
no test coverage detected