forked from jd-opensource/nutui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.build.taro.vue.disperse.ts
55 lines (51 loc) · 1.37 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
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import path from 'path';
const fs = require('fs-extra');
import config from './package.json';
import configPkg from './src/config.json';
const banner = `/*!
* ${config.name} v${config.version} ${new Date()}
* (c) 2022 @jdf2e.
* Released under the MIT License.
*/`;
let input = {};
configPkg.nav.map((item) => {
item.packages.forEach((element) => {
let { name } = element;
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()],
build: {
minify: false,
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true
}
},
lib: {
entry: '',
name: 'index',
// fileName: (format) => format,
formats: ['es']
},
rollupOptions: {
// 请确保外部化那些你的库中不需要的依赖
external: ['vue', 'vue-router', '@tarojs/taro'],
input,
output: {
banner,
dir: path.resolve(__dirname, './dist/packages/_es'),
entryFileNames: '[name].js'
}
},
emptyOutDir: false
}
});