-
Notifications
You must be signed in to change notification settings - Fork 3
/
vite.config.extension.ts
138 lines (129 loc) · 3.15 KB
/
vite.config.extension.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
137
138
import type { Plugin } from 'vite'
import { builtinModules } from 'node:module'
import { defineConfig } from 'vite'
import fs from 'node:fs/promises'
import path from 'node:path'
interface CopyFoldersPluginOptions {
dest: string
src: string
}
interface MakeFilePluginOptions {
content: string
dest: string
}
let copyRecursive = async (
source: string,
destination: string,
): Promise<void> => {
let checkIfExists = async (file: string): Promise<boolean> => {
try {
await fs.stat(file)
return true
} catch {
return false
}
}
let exists = await checkIfExists(source)
let stats = await fs.stat(source)
let isDirectory = exists && stats.isDirectory()
if (isDirectory) {
await fs.mkdir(destination, { recursive: true })
let children = await fs.readdir(source)
await Promise.all(
children.map(async childItemName => {
await copyRecursive(
path.join(source, childItemName),
path.join(destination, childItemName),
)
}),
)
} else {
await fs.copyFile(source, destination)
}
}
let copyFoldersPlugin = (options: CopyFoldersPluginOptions[] = []): Plugin => ({
closeBundle: async () => {
if (!Array.isArray(options) || options.length === 0) {
console.error(
'vite-plugin-copy-folders: "options" should be a non-empty array',
)
return
}
await Promise.all(
options.map(async ({ dest, src }) => {
if (!src || !dest) {
console.error(
'vite-plugin-copy-folders: "src" and "dest" options are required',
)
return
}
try {
await copyRecursive(src, dest)
} catch (error) {
console.error(`vite-plugin-copy-folders: ${error as string}`)
}
}),
)
},
name: 'vite-plugin-copy-folders',
apply: 'build',
})
let makeFile = (options: MakeFilePluginOptions): Plugin => ({
closeBundle: async () => {
try {
await fs.writeFile(options.dest, options.content)
} catch (error) {
console.error(`vite-plugin-make-file: ${error as string}`)
}
},
name: 'vite-plugin-make-file',
apply: 'build',
})
export default defineConfig({
plugins: [
copyFoldersPlugin([
{
dest: 'dist/icons',
src: 'icons',
},
{
dest: 'dist/themes',
src: 'themes',
},
]),
makeFile({
content: JSON.stringify(
{
iconDefinitions: {
loader: {
iconPath: './icons/loader.svg',
},
},
hidesExplorerArrows: true,
folderExpanded: 'loader',
folder: 'loader',
file: 'loader',
},
null,
2,
),
dest: 'dist/extension/index.json',
}),
],
build: {
rollupOptions: {
external: (id: string) =>
id === 'vscode' || builtinModules.includes(id.replace('node:', '')),
output: {
preserveModules: true,
exports: 'auto',
},
},
lib: {
entry: path.resolve(__dirname, 'extension', 'index.ts'),
fileName: (_format, entryName) => `${entryName}.js`,
formats: ['cjs'],
},
minify: false,
},
})