Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate a build manifest after the build #465

Merged
merged 9 commits into from
Sep 6, 2022
Prev Previous commit
Change key to match property
  • Loading branch information
caendesilva committed Sep 6, 2022
commit 3e7b0a549dac631faa72b187473cbfe2162e8ace
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function run(): void
foreach (Hyde::pages() as $page) {
$manifest->push([
'page' => $page->getSourcePath(),
'input_hash' => md5(Hyde::path($page->getSourcePath())),
'source_hash' => md5(Hyde::path($page->getSourcePath())),
'output_hash' => md5(Hyde::path($page->getOutputPath())),
]);
}
Expand Down