handlebars-template-compiler
v1.1.0
Published
一个简单的基于 handlebars 的模板编译器
Downloads
3
Readme
handlebars-template-compiler
Install
$ npm install handlebars-template-compiler
OR
$ yarn add handlebars-template-compiler
Usage
const compiler = require('handlebars-template-compiler');
compiler(
{
name: '洛竹',
},
'./tpl',
{
tplSuffix: 'tpl',
exclude: ['**/*.js'],
}
);