代码拉取完成,页面将自动刷新
var through = require('through')
var compiler = require('./lib/compiler')
module.exports = function vueify (file, options) {
if (!/.vue$/.test(file)) {
return through()
}
compiler.loadConfig()
compiler.applyConfig(options)
compiler.applyConfig({
sourceMap: options._flags.debug
})
var data = ''
var stream = through(write, end)
stream.vueify = true
function dependency (file) {
stream.emit('file', file)
}
function emitStyle (e) {
stream.emit('vueify-style', e)
}
function write (buf) {
data += buf
}
function end () {
stream.emit('file', file)
compiler.on('dependency', dependency)
compiler.on('style', emitStyle)
compiler.compile(data, file, function (error, result) {
compiler.removeListener('dependency', dependency)
compiler.removeListener('style', emitStyle)
if (error) {
stream.emit('error', error)
// browserify doesn't log the stack by default...
console.error(error.stack.replace(/^.*?\n/, ''))
}
stream.queue(result)
stream.queue(null)
})
}
return stream
}
// expose compiler
module.exports.compiler = compiler
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。