regenerate dist

This commit is contained in:
Sean Goedecke
2025-07-21 04:56:41 +00:00
parent 72102e50bf
commit f79e4e11cb
2 changed files with 2 additions and 2 deletions

2
dist/index.js generated vendored
View File

@@ -52054,7 +52054,7 @@ function parseTemplateVariables(input) {
* Replace template variables in text using {{variable}} syntax
*/
function replaceTemplateVariables(text, variables) {
return text.replace(/\{\{(\w+)\}\}/g, (match, variableName) => {
return text.replace(/\{\{([\w.-]+)\}\}/g, (match, variableName) => {
if (variableName in variables) {
return variables[variableName];
}

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long