1
0
Fork 0
mirror of synced 2024-07-01 20:41:03 +12:00

Quick fix for string-templates, was being a bit too fuzzy in its lookup of possible helper names.

This commit is contained in:
mike12345567 2021-02-03 11:41:33 +00:00
parent 12eb36175d
commit b79d6b712b
2 changed files with 4 additions and 2 deletions

View file

@ -91,7 +91,9 @@ module.exports.processStringSync = (string, context) => {
}
string = processors.preprocess(string)
// this does not throw an error when template can't be fulfilled, have to try correct beforehand
const template = hbsInstance.compile(string)
const template = hbsInstance.compile(string, {
strict: false,
})
return processors.postprocess(template(clonedContext))
}

View file

@ -63,7 +63,7 @@ module.exports.processors = [
return statement
}
}
if (HelperNames().some(option => possibleHelper.includes(option))) {
if (HelperNames().some(option => option.includes(possibleHelper))) {
insideStatement = `(${insideStatement})`
}
return `{{ all ${insideStatement} }}`