Skip to content

Commit c78ebc6

Browse files
committed
refactor: switching from mustache engine to handlebars
1 parent 4835d3b commit c78ebc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/src/lib/pattern_engines.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ function findEnginesInConfig(config) {
8383
// any loaded PatternEngine by addressing them like this:
8484
//
8585
// var PatternEngines = require('./pattern_engines/pattern_engines');
86-
// var Mustache = PatternEngines['mustache'];
86+
// var Handlebars = PatternEngines['handlebars'];
8787
//
8888
// Object.create lets us create an object with a specified prototype. We want
8989
// this here because we would like the object's "own properties" to include
@@ -239,9 +239,9 @@ const PatternEngines = Object.create({
239239
}
240240
}
241241

242-
// otherwise, assume it's a plain mustache template string and act
242+
// otherwise, assume it's a plain handlebars template string and act
243243
// accordingly
244-
return 'mustache';
244+
return 'handlebars';
245245
},
246246

247247
/**

0 commit comments

Comments
 (0)