From ffa6fafcc1c4fe6ad6ca90eada4f3953ce193237 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 6 Jul 2013 20:17:48 -0700 Subject: [PATCH] Fix typo of `matchProp` to `matchVar` in build.js. Former-commit-id: d42933a19b7c90dd7b007858ec73b8f7b2f64572 --- build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.js b/build.js index 5baed6fea..e4966fb10 100755 --- a/build.js +++ b/build.js @@ -4097,7 +4097,7 @@ }); // replace `_` use in `_.templateSettings.imports` - source = source.replace(matchProp(source, 'templateSettings'), function(match) { + source = source.replace(matchVar(source, 'templateSettings'), function(match) { return match.replace(/(:\s*)lodash\b/, "$1{ 'escape': escape }"); });