-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathvite.config.ts
337 lines (308 loc) · 12.8 KB
/
vite.config.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
import path from 'node:path';
import url from 'node:url';
import fs from 'node:fs';
import { defineConfig, LibraryOptions, Plugin, UserConfig } from 'vite';
import tsconfigPaths from 'vite-tsconfig-paths';
import server from './vite.plugin.server';
import license from 'rollup-plugin-license';
import copy from 'rollup-plugin-copy';
import type { OutputOptions } from 'rollup';
import typescript, { RollupTypescriptOptions } from '@rollup/plugin-typescript';
import terser from '@rollup/plugin-terser';
import ts from 'typescript';
import generateDts from './vite.plugin.dts';
import MagicString from 'magic-string';
import { elementStyleUsingTransformer } from './scripts/element-style-transformer';
const __dirname = url.fileURLToPath(new URL('.', import.meta.url));
function getGitBranch(): string {
const filepath = '.git/HEAD';
if (!fs.existsSync(filepath)) {
throw new Error('.git/HEAD does not exist');
}
const buf = fs.readFileSync(filepath);
const match = /ref: refs\/heads\/([^\n]+)/.exec(buf.toString());
return match ? match[1] : '';
}
function dtsPathsTransformer(mapping: Record<string, string>) {
const mapPath = (filePath, input: string): string | undefined => {
for (const [k, v] of Object.entries(mapping)) {
if (input.startsWith(k)) {
const absoluteFile = path.resolve(v, input.substring(k.length));
return './' + path.relative(path.dirname(filePath), absoluteFile).replaceAll('\\', '/');
}
}
return undefined;
};
return (context: ts.TransformationContext) => {
return (source: ts.SourceFile | ts.Bundle) => {
const sourceFilePath = ts.isSourceFile(source) ? source.fileName : source.sourceFiles[0];
const visitor = (node: ts.Node) => {
if (ts.isExportDeclaration(node) && node.moduleSpecifier && ts.isStringLiteral(node.moduleSpecifier)) {
const mapped = mapPath(sourceFilePath, node.moduleSpecifier.text);
if (mapped) {
return ts.factory.createExportDeclaration(
node.modifiers,
node.isTypeOnly,
node.exportClause,
ts.factory.createStringLiteral(mapped),
node.attributes
);
}
return node;
} else if (ts.isImportDeclaration(node) && ts.isStringLiteral(node.moduleSpecifier)) {
const mapped = mapPath(sourceFilePath, node.moduleSpecifier.text);
if (mapped) {
return ts.factory.createImportDeclaration(
node.modifiers,
node.importClause,
ts.factory.createStringLiteral(mapped),
node.attributes
);
}
return node;
}
return ts.visitEachChild(node, visitor, context);
};
return ts.visitEachChild(source, visitor, context);
};
};
}
export default defineConfig(({ command, mode }) => {
if (command === 'serve') {
return {
plugins: [
tsconfigPaths(),
typescript({
tsconfig: './tsconfig.json',
transformers: {
before: [elementStyleUsingTransformer()]
}
}),
server()
],
server: {
open: '/playground/control.html'
},
esbuild: false
// esbuild: {
// supported: {
// using: false
// },
// }
};
} else {
const commonOutput: Partial<OutputOptions> = {
globals: {
jQuery: 'jQuery'
}
};
const config: UserConfig = {
esbuild: false,
plugins: [
license({
banner: {
content: {
file: 'LICENSE.header'
},
data() {
let buildNumber = process.env.GITHUB_RUN_NUMBER || 0;
let gitBranch = getGitBranch();
return {
branch: gitBranch,
build: buildNumber
};
}
}
}),
copy({
targets: [
{ src: 'font/bravura/*', dest: 'dist/font' },
{ src: 'font/sonivox/*', dest: 'dist/soundfont' }
]
})
],
build: {
emptyOutDir: false,
lib: {
entry: {
'alphaTab.core': path.resolve(__dirname, 'src/alphaTab.core.ts'),
alphaTab: path.resolve(__dirname, 'src/alphaTab.main.ts'),
'alphaTab.worker': path.resolve(__dirname, 'src/alphaTab.worker.ts'),
'alphaTab.worklet': path.resolve(__dirname, 'src/alphaTab.worklet.ts')
},
name: 'alphaTab'
},
minify: false,
rollupOptions: {
external: ['jQuery', 'vite', 'rollup', /node:.*/],
output: [],
onLog(level, log, handler) {
if (log.code === 'CIRCULAR_DEPENDENCY') {
return; // Ignore circular dependency warnings
}
handler(level, log);
}
}
}
};
const enableTypeScript = (o: Partial<RollupTypescriptOptions> = {}, types: boolean = false) => {
config.plugins!.unshift(
tsconfigPaths(),
typescript({
tsconfig: './tsconfig.json',
...(types
? {
declaration: true,
declarationMap: true,
declarationDir: './dist/types'
}
: {}),
...o,
transformers: {
afterDeclarations: [
dtsPathsTransformer({
'@src/': path.resolve(__dirname, 'src')
})
]
}
})
);
};
const umd = (
name: string,
entry: string,
tsOptions: RollupTypescriptOptions,
cjs?: boolean,
withMin?: boolean
) => {
enableTypeScript(tsOptions, false);
lib.entry = {
[name]: path.resolve(__dirname, entry)
};
config.plugins!.push({
name: 'import-meta',
resolveImportMeta() {
return '{}'; // prevent import.meta to be empty in non ES outputs
}
});
(config.build!.rollupOptions!.output as OutputOptions[]).push({
...commonOutput,
dir: 'dist/',
format: cjs ? 'cjs' : 'umd',
name: name,
entryFileNames: '[name].js',
chunkFileNames: '[name].js'
});
if (withMin) {
(config.build!.rollupOptions!.output as OutputOptions[]).push({
...commonOutput,
dir: 'dist/',
format: cjs ? 'cjs' : 'umd',
name: name,
plugins: [terser()],
entryFileNames: '[name].min.js',
chunkFileNames: '[name].min.js'
});
}
};
const esm = (name: string, entry: string, tsOptions: RollupTypescriptOptions, withMin: boolean = true) => {
enableTypeScript(tsOptions, true);
lib.entry = {
[name]: path.resolve(__dirname, entry)
};
(config.build!.rollupOptions!.external as string[]).push('./alphaTab.core');
(config.build!.rollupOptions!.output as OutputOptions[]).push({
...commonOutput,
dir: 'dist/',
format: 'es',
entryFileNames: '[name].mjs',
chunkFileNames: '[name].mjs',
plugins: [
{
name: 'dts',
writeBundle(_, bundle) {
const files = Object.keys(bundle);
for (const file of files) {
const chunk = bundle[file];
if (
file.endsWith('.mjs') &&
chunk.type === 'chunk' &&
chunk.isEntry &&
!chunk.facadeModuleId!.endsWith('alphaTab.core.ts')
) {
this.info(`Creating types for bundle ${file}`);
generateDts(__dirname, chunk.facadeModuleId!, file.replace('.mjs', '.d.ts'));
}
}
}
}
]
});
if (withMin) {
(config.build!.rollupOptions!.output as OutputOptions[]).push({
...commonOutput,
dir: 'dist/',
format: 'es',
plugins: [terser()],
entryFileNames: '[name].min.mjs',
chunkFileNames: '[name].min.mjs'
});
}
};
const lib = config.build!.lib! as LibraryOptions;
// TODO: move to a monorepo style repository and isolate packages
const viteOptions: RollupTypescriptOptions = {
include: ['src/*.vite.ts', 'src/vite/**']
};
const webpackOptions: RollupTypescriptOptions = {
include: ['src/*.webpack.ts', 'src/webpack/**']
};
switch (mode) {
case 'vite-cjs':
umd('alphaTab.vite', 'src/alphaTab.vite.ts', viteOptions, true, false);
break;
case 'vite-esm':
esm('alphaTab.vite', 'src/alphaTab.vite.ts', viteOptions, false);
break;
case 'webpack-cjs':
umd('alphaTab.webpack', 'src/alphaTab.webpack.ts', webpackOptions, true, false);
break;
case 'webpack-esm':
esm('alphaTab.webpack', 'src/alphaTab.webpack.ts', webpackOptions, false);
break;
case 'umd':
umd('alphaTab', 'src/alphaTab.main.ts', {});
break;
default:
case 'esm':
// ensure we have file extensions in the URL worker resolve area
const adjustScriptPathsPlugin = (min: boolean) => {
return {
name: 'adjust-script-paths',
renderChunk(code, chunk) {
const modifiedCode = new MagicString(code);
const extension = min ? '.min.mjs' : '.mjs';
modifiedCode
.replaceAll(/alphaTab.core(.ts)?'/g, `alphaTab.core${extension}'`)
.replaceAll(/alphaTab.worker(.ts)?'/g, `alphaTab.worker${extension}'`)
.replaceAll(/alphaTab.worklet(.ts)?'/g, `alphaTab.worklet${extension}'`);
return {
code: modifiedCode.toString(),
map: modifiedCode.generateMap()
};
}
} satisfies Plugin;
};
esm('alphaTab', 'src/alphaTab.main.ts', {});
lib.entry['alphaTab.core'] = path.resolve(__dirname, 'src/alphaTab.core.ts');
lib.entry['alphaTab.worker'] = path.resolve(__dirname, 'src/alphaTab.worker.ts');
lib.entry['alphaTab.worklet'] = path.resolve(__dirname, 'src/alphaTab.worklet.ts');
for (const output of config.build!.rollupOptions!.output as OutputOptions[]) {
const isMin = (output.entryFileNames as string).includes('.min');
(output.plugins as Plugin[]).push(adjustScriptPathsPlugin(isMin));
}
break;
}
return config;
}
});