smarthbs/ts/smarthbs.template.ts

10 lines
307 B
TypeScript
Raw Normal View History

2017-03-19 16:14:28 +00:00
import * as plugins from './smarthbs.plugins'
/**
* 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))
}