Skip to content

Commit

Permalink
actually fix serializing
Browse files Browse the repository at this point in the history
  • Loading branch information
charredUtensil committed Dec 5, 2024
1 parent 2e3f37d commit 5813f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/transformers/04_ephemera/05_serialize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function indent(it: string, prefix: string) {
function comments(cavern: ProgrammedCavern) {
return `Cavern generated by groundHog v${process.env.REACT_APP_VERSION}
https://github.com/charredUtensil/groundhog
${JSON.stringify({ initialContext: cavern.initialContext }, null, 2)}`;
initialContext = ${JSON.stringify(cavern.initialContext, null, 2)}`;
}

/**
Expand Down

0 comments on commit 5813f94

Please sign in to comment.