1 Star 0 Fork 0

lee/gulp-ejs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
'use strict'
const through = require('through2')
const PluginError = require('plugin-error')
const ejs = require('ejs')
const PLUGIN_NAME = 'gulp-ejs'
function render(data, options = {}) {
return through.obj(function(file, encoding, callback) {
if (file.isNull()) {
return callback(null, file)
}
if (file.isStream()) {
callback(new PluginError(PLUGIN_NAME, 'Streaming not supported'))
}
const ejsData = Object.assign({}, data, file.data)
try {
const rendered = ejs.render(file.contents.toString(), ejsData, options)
if (options.async && typeof rendered.then === 'function') {
rendered.then(rendered => {
file.contents = Buffer.from(rendered)
this.push(file)
}).catch(err => {
this.emit(
'error',
new PluginError(PLUGIN_NAME, err, { fileName: file.path })
)
}).then(callback)
return
}
file.contents = Buffer.from(rendered);
this.push(file);
} catch (err) {
this.emit(
'error',
new PluginError(PLUGIN_NAME, err, { fileName: file.path })
)
}
callback()
})
}
// expose ejs object for configuration
render.__EJS__ = ejs
module.exports = render
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jumplee/gulp-ejs.git
[email protected]:jumplee/gulp-ejs.git
jumplee
gulp-ejs
gulp-ejs
master

搜索帮助