UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

13 lines (10 loc) 444 B
var fs = require('fs') var path = require('path') var compile = require('./') delete require.cache[require.resolve(__filename)] module.exports = function(file, opts) { file = path.join(path.dirname(module.parent.filename), file) if (!fs.existsSync(file) && fs.existsSync(file+'.schema')) file += '.schema' if (!fs.existsSync(file) && fs.existsSync(file+'.json')) file += '.json' return compile(fs.readFileSync(file, 'utf-8'), opts) }