We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db29274 + 47392b5 commit ec24a87Copy full SHA for ec24a87
1 file changed
index.js
@@ -1,5 +1,6 @@
1
var panini;
2
var help = require('./lib/helpMessage');
3
+var Handlebars = require('handlebars');
4
5
/**
6
* Initializes an instance of Panini.
@@ -8,7 +9,7 @@ var help = require('./lib/helpMessage');
8
9
*/
10
function Panini(options) {
11
this.options = options;
- this.Handlebars = require('handlebars');
12
+ this.Handlebars = Handlebars;
13
this.layouts = {};
14
this.data = {};
15
@@ -47,6 +48,7 @@ module.exports = function(options) {
47
48
}
49
50
module.exports.Panini = Panini;
51
+module.exports.Handlebars = Handlebars;
52
module.exports.refresh = function() {}
53
module.exports.help = function() {
54
help();
0 commit comments