9 lines
257 B
JavaScript
9 lines
257 B
JavaScript
import { statSync } from "fs";
|
|
|
|
export function modifiedTime() {
|
|
return function (tree, file) {
|
|
const filepath = file.history[0];
|
|
const result = statSync(filepath);
|
|
file.data.astro.frontmatter.lastModified = result.mtime.toISOString();
|
|
};
|
|
}
|