Compare commits

..

4 Commits

Author SHA1 Message Date
145acf4128
попытка настроить время материала
All checks were successful
continuous-integration/drone/push Build is passing
2024-09-07 11:06:53 +03:00
c2b3b77dcc
Revert "попытка настроить время материала"
This reverts commit 038aad9015.
2024-09-07 11:06:21 +03:00
6f04db5d09
Упрощение сборки 2024-09-07 11:04:55 +03:00
038aad9015
попытка настроить время материала 2024-09-07 11:04:55 +03:00

View File

@ -58,18 +58,17 @@ export const CreatedModifiedDate: QuartzTransformerPlugin<Partial<Options>> = (u
// Get a reference to the main git repo.
// It's either the same as the workdir,
// or 1+ level higher in case of a submodule/subtree setup
repo = Repository.discover("/usr/src/app/content")
repo = Repository.discover(file.cwd)
console.log(chalk.green(`Git repository found at: ${repo.path()}`));
}
try {
const status = await repo.getStatusAsync();
modified ||= await repo.getFileLatestModifiedDateAsync(fullFp!);
console.log(chalk.green(`Git repository found at: ${status.tracked.includes(fullFp)}`));
modified ||= await repo.getFileLatestModifiedDateAsync(file.data.filePath!)
} catch {
console.log(
chalk.yellow(
`\nWarning: ${fullFp!} isn't yet tracked by git, last modification date is not available for this file`,
`\nWarning: ${file.data
.filePath!} isn't yet tracked by git, last modification date is not available for this file`,
),
)
}