Open ProfessorManhattan opened 3 years ago
You would have to make a file that registers them, for example:
//handlebars-helpers.js
module.exports.register = function (Handlebars) {
require('handlebars-helpers')(Handlebars)
}
Then run with that file instead:
hbs --helper ./handlebars-helpers.js
When I run
hbs --helper handlebars-helpers
I get the following issue:Any idea on how I can import all of the handlebars-helpers functions with this?