import { config } from '../../../config'; /** * Gets the absolute path to Static Suite's log file. * * @returns The absolute path to Static Suite's log file. */ const getLogFile = (): string | null => config.workDir ? `${config.workDir}/lock-executed.log` : null; export { getLogFile };