Skip to content

Commit ea4e7d8

Browse files
committed
package
1 parent aaf9c5a commit ea4e7d8

File tree

3 files changed

+42
-4
lines changed

3 files changed

+42
-4
lines changed

dist/index.js

Lines changed: 40 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/prompt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function parseFileTemplateVariables(fileInput: string): TemplateVariables
6565
result[key] = fs.readFileSync(filePath, 'utf-8')
6666
} catch (err) {
6767
throw new Error(
68-
`Failed to read file for template variable '${key}' at path '${filePath}': ${err instanceof Error ? err.message : 'Unknown error'}`
68+
`Failed to read file for template variable '${key}' at path '${filePath}': ${err instanceof Error ? err.message : 'Unknown error'}`,
6969
)
7070
}
7171
}

0 commit comments

Comments
 (0)