feat: add babel-plugin-import

This commit is contained in:
fxy060608 2018-12-27 18:17:20 +08:00
parent 387a7c89e0
commit eb01916a22

View File

@ -1,7 +1,24 @@
const plugins = []
process.UNI_LIBRARIES = process.UNI_LIBRARIES || ['uni-ui']
process.UNI_LIBRARIES.forEach(libraryName => {
plugins.push([
'import',
{
'libraryName': libraryName,
'customName': (name) => {
return `${libraryName}/lib/${name}/${name}`
}
}
])
})
module.exports = {
presets: [
['@vue/app', {
useBuiltIns: 'entry'
}]
]
presets: [
[
'@vue/app',
{
useBuiltIns: 'entry'
}
]
],
plugins
}