Compare commits

...

3 Commits

Author SHA1 Message Date
b4654a24e2
fixed lastmod.ts
All checks were successful
continuous-integration/drone/push Build is passing
2024-09-07 11:40:05 +03:00
74ae3057f3
fixed .dockerignore 2024-09-07 11:36:44 +03:00
738dd0024a
fixed .dockerignore 2024-09-07 11:30:42 +03:00
2 changed files with 7 additions and 2 deletions

View File

@ -14,3 +14,8 @@ docs
.gitignore
LICENSE.txt
CODE_OF_CONDUCT.md
Dockerfile
.dockerignore
quartz.config.ts
quartz.layout.ts
content

View File

@ -58,7 +58,7 @@ 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(file.cwd)
repo = await Repository.discover(file.cwd, { search: true });
console.log(chalk.green(`Git repository found at: ${repo.path()}`));
}