-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.vue2.ts
136 lines (128 loc) · 4.82 KB
/
vite.config.vue2.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import { fileURLToPath, URL } from 'node:url'
import * as fs from 'fs';
import path from "path";
import { defineConfig } from 'vite'
// import legacy from '@vitejs/plugin-legacy'
import vue2Plugin from 'vitejs-plugin-vue2fless'
// import vue2Plugin from '@vitejs/plugin-vue2'
// import vue2Jsx from '@vitejs/plugin-vue2-jsx'
import { resolve } from 'path'
const outputDir = '';
/**
* 打包入口文件
* 扫描/src/components目录下的所有组件, 生成入口文件
* 规则:
* 1. components下的目录
* 2. components下的目录下存在index.ts文件
* @return { '目标路径': '源路径' } 例如:{'components/button/vue3': `./src/components/button/wrap.vue3.vue`}
*/
const entryFiles: {[key: string]: string} = {};
/**
* 找到所有需要打包的文件
* 包括各个组件的入口文件以及vue3/react包装组件(vue2包装组件不能打包!!!)
*/
(function getEntryFiles() {
fs.readdirSync('./npm/esm/components')
.filter(item => fs.statSync(path.join('./npm/esm/components', item)).isDirectory())
.forEach(componentName => {
/** 存在组件入口文件/npm/esm/components/${componentName}/index.ts */
if (fs.existsSync(path.join('./npm/esm/components', componentName, 'index.js'))) {
// entryFiles[`components/${componentName}/index`] = `./src/components/${componentName}/index.ts`;
// /** 存在vue3入口文件/src/components/${componentName}/wrap.vue3.vue */
// if (fs.existsSync(path.join('./src/components', componentName, 'wrap.vue3.vue'))) {
// entryFiles[`components/${componentName}/vue3`] = `./src/components/${componentName}/wrap.vue3.vue`;
// }
// /** 存在react入口文件/src/components/${componentName}/wrap.react.vue */
// if (fs.existsSync(path.join('./src/components', componentName, 'wrap.react.tsx'))) {
// entryFiles[`components/${componentName}/react`] = `./src/components/${componentName}/wrap.react.tsx`;
// }
/** 存在vue2入口文件/src/components/${componentName}/wrap.vue2.vue */
if (fs.existsSync(path.join('./npm/esm/components', componentName, 'wrap.vue2.vue'))) {
console.log('componentName', componentName)
entryFiles[`components/${componentName}/vue2`] = `./npm/esm/components/${componentName}/wrap.vue2.vue`;
}
} else {
console.warn('>>>', '组件入口文件不存在', `./src/components/${componentName}/index.ts`);
}
})
})();
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
plugins: [
vue2Plugin({
template: {
compilerOptions: {
isCustomElement: (tag) => tag.startsWith('fl-')
// && !tag.endsWith('-v3')
// && !tag.endsWith('-v2')
// && !tag.endsWith('-react')
}
},
}),
// vue2Jsx(),
// legacy({
// targets: ['ie >= 11'],
// additionalLegacyPolyfills: ['regenerator-runtime/runtime']
// })
{
name: 'delete-vue2-after-finish',
closeBundle() {
const compNameList = fs.readdirSync('./npm/esm/components/').filter(fileName => fs.statSync(path.join('./npm/esm/components', fileName)).isDirectory());
/** 复制wrap.vue2.vue */
compNameList.forEach(compName => {
const vue2File = path.resolve(__dirname, `./npm/esm/components/${compName}/wrap.vue2.vue`);
if (fs.existsSync(vue2File)) {
fs.rmSync(vue2File);
}
})
}
},
],
build: {
emptyOutDir: false,
// sourcemap: true,
lib: {
/**
* 如果不配这里,各组件的wrap.react.tsx/wrap.vue3.vue/wrap.vue2.vue不会被打包
* 但这里只需要一个空的入口文件???
*/
entry: path.resolve(__dirname, 'npm/esm/index.js'),
formats: ['es'],
// [
// // path.resolve(__dirname, 'src/components/entry.vue3.ts'),
// path.resolve(__dirname, 'src/components/entry.react.ts')
// ],
// // 输出格式
// formats: ['es'],
// // 输出文件名
// fileName: (format) =>
// `${format === 'es' ? 'esm' : 'cjs'}/vue3.${format === 'es' ? 'mjs' : 'js'}`,
},
rollupOptions: {
input: entryFiles,
output: {
format: 'esm',
dir: 'npm/esm',
entryFileNames: outputDir + "[name].js",
chunkFileNames: outputDir + "deps/[name].[hash].js",
assetFileNames: outputDir + 'assets/[name]-[hash][extname]',
/** 分包配置 */
manualChunks: {
'qrcode': ['qrcode'],
},
paths: {
'vue': 'vue3fless',
'vue2': 'vue2fless',
},
// plugins: [terser()],
},
// 确保外部化处理那些你不想打包进库的依赖
external: ['vue', 'vue3fless', 'vue2', 'vue2fless', 'react']
}
}
})