Skip to content

Commit

Permalink
fix: at least put the semi right
Browse files Browse the repository at this point in the history
  • Loading branch information
learosema committed Sep 25, 2024
1 parent 4cb5d21 commit 47f629c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transforms/template-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export async function handleTemplateFile(config, data, inputFile) {
const parsed = path.parse(inputFile);
const relInputFile = path.join(config.dir.input, inputFile);
const absInputFile = path.resolve(relInputFile);
throw new Error('this needs more work';)
throw new Error('this needs more work');
const content = await (resolve || config.resolve)(absInputFile, 'utf8');
if (content === null) {
return null;
Expand Down

0 comments on commit 47f629c

Please sign in to comment.