forked from jdf2e/nutui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.build.taro.vue.disperse.ts
74 lines (71 loc) · 1.87 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
74
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';
let input = {};
configPkg.nav.map((item) => {
item.packages.forEach((element) => {
let { name, exclude } = element;
// if (name.toLowerCase().indexOf('calendar') != -1) {
if (exclude != true) {
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('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,
lib: {
entry: '',
name: 'index',
// fileName: (format) => format,
formats: ['es']
},
rollupOptions: {
// 请确保外部化那些你的库中不需要的依赖
external: [
'vue',
'vue-router',
'@tarojs/taro',
'@/packages/locale',
'@tarojs/components',
'@nutui/icons-vue-taro'
],
input,
output: {
paths: {
'@/packages/locale': '../locale/lang'
},
dir: path.resolve(__dirname, './dist/packages/_es'),
entryFileNames: '[name].js',
plugins: []
}
},
emptyOutDir: false
}
});