smarthbs/ts/smarthbs.template.ts

17 lines
476 B
TypeScript
Raw Normal View History

2022-07-24 15:30:19 +02:00
import * as plugins from './smarthbs.plugins.js';
2017-03-19 17:14:28 +01:00
/**
* get a template for a file on disk
*/
export let getTemplateForFile = async (filePathArg: string) => {
let filePathAbsolute = plugins.path.resolve(filePathArg);
return plugins.handlebars.compile(plugins.smartfile.fs.toStringSync(filePathAbsolute));
};
2017-05-26 15:16:33 +02:00
/**
* get a template for string
*/
export let getTemplateForString = async (fileStringArg: string) => {
return plugins.handlebars.compile(fileStringArg);
};