1 Star 0 Fork 0

Vue.js/vueify

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/vuejs/vueify.git
git@gitee.com:vuejs/vueify.git
vuejs
vueify
vueify
master

搜索帮助