forked from x6eull/mobile-nx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.buildWidgets.ts
67 lines (65 loc) · 2.03 KB
/
vite.buildWidgets.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
import { Plugin, UserConfig } from 'vite'
import { dirname, resolve } from 'node:path'
import { fileURLToPath } from 'node:url'
import { readdirSync } from 'node:fs'
import { rollup } from 'rollup'
import rollupPluginDts from 'rollup-plugin-dts'
import rollupPluginAlias from '@rollup/plugin-alias'
const __dirname = dirname(fileURLToPath(import.meta.url))
/**Vite Plugin,构建extHelper(包括dts)和内置widgets */
export default function buildWidgets(): Plugin {
let resolveAlias: NonNullable<UserConfig['resolve']>['alias'] | undefined
return {
name: 'vite-plugin-build-widgets',
config(config) {
resolveAlias = config?.resolve?.alias
const extHelperKey = '__extHelper'
const rollupInput: Record<string, string> = {
main: resolve(__dirname, 'index.html'),
[extHelperKey]: resolve(__dirname, 'extHelper.ts'),
}
readdirSync(resolve(__dirname, 'widgets'), {
encoding: 'utf-8',
recursive: false,
withFileTypes: true,
})
.filter((d) => d.isDirectory())
.forEach(
({ name: dirName }) =>
(rollupInput[`${dirName}`] = resolve(
__dirname,
'widgets',
dirName,
'index.html',
)),
)
return {
build: {
rollupOptions: {
input: rollupInput,
output: {
entryFileNames({ name: entryName }) {
if (entryName === extHelperKey) return 'extHelper.js'
if (entryName === 'main') return 'assets/[name]-[hash:8].js'
return 'widgets/[name]/[name]-[hash:8].js'
},
},
},
},
}
},
async generateBundle() {
//TODO use vite's rollup
console.log('\nBuilding extHelper.d.ts')
await (
await rollup({
input: 'extHelper.ts',
plugins: [
rollupPluginAlias({ entries: resolveAlias }),
rollupPluginDts(),
],
})
).write({ dir: 'dist' })
},
}
}