forked from jdf2e/nutui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vite.config.build.taro.vue.disperse.ts
73 lines (70 loc) · 2.14 KB
/
vite.config.build.taro.vue.disperse.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
import fs from 'fs-extra'
import configPkg from './src/config.json'
const input = {}
configPkg.nav.map((item) => {
item.packages.forEach((element) => {
const { name, exclude, taro, setup } = element
if (taro === false) return // 排除非 Taro 组件
if (exclude != true) {
if (setup === true) {
input[name] = `./src/packages/__VUE/${name.toLowerCase()}/index.taro.ts`
} else {
const filePath = path.join(`./src/packages/__VUE/${name.toLowerCase()}/index.taro.vue`)
input[name] = `./src/packages/__VUE/${name.toLowerCase()}/index${fs.existsSync(filePath) ? '.taro' : ''}.vue`
}
}
// }
})
})
export default defineConfig({
resolve: {
alias: [{ find: '@', replacement: path.resolve(__dirname, './src') }]
},
plugins: [
vue({
template: {
compilerOptions: {
isCustomElement: (tag) => {
return (
tag.startsWith('taro-') ||
tag.startsWith('scroll-view') ||
tag.startsWith('swiper') ||
tag.startsWith('swiper-item') ||
tag.startsWith('picker') ||
tag.startsWith('picker-view') ||
tag.startsWith('picker-view-column')
)
},
whitespace: 'preserve'
}
}
})
],
build: {
minify: false, // Taro 相关的构建不能开启,开启后会导致找不到模板
target: 'es2015',
lib: {
entry: '',
name: 'index',
// fileName: (format) => format,
formats: ['es']
},
rollupOptions: {
// 请确保外部化那些你的库中不需要的依赖
external: ['vue', 'vue-router', '@tarojs/taro', '@/packages/locale', '@nutui/icons-vue-taro'],
input,
output: {
paths: {
'@/packages/locale': '@nutui/nutui-taro/dist/packages/locale/lang'
},
dir: path.resolve(__dirname, './dist/packages'),
entryFileNames: (chunkInfo) => `${chunkInfo.name.toLowerCase()}/${chunkInfo.name}.js`,
plugins: []
}
},
emptyOutDir: false
}
})