MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / alphaTab

Function alphaTab

packages/vite/src/alphaTabVitePlugin.ts:11–22  ·  view source on GitHub ↗
(options?: AlphaTabVitePluginOptions)

Source from the content-addressed store, hash-verified

9 * @public
10 */
11export function alphaTab(options?: AlphaTabVitePluginOptions) {
12 const plugins: Plugin[] = [];
13
14 options ??= {};
15
16 plugins.push(detectionGlobalPlugin());
17 plugins.push(importMetaUrlPlugin(options));
18 plugins.push(workerPlugin(options));
19 plugins.push(copyAssetsPlugin(options));
20
21 return plugins;
22}

Callers 1

runBundleSmokeTestFunction · 0.90

Calls 5

detectionGlobalPluginFunction · 0.90
importMetaUrlPluginFunction · 0.90
workerPluginFunction · 0.90
copyAssetsPluginFunction · 0.90
pushMethod · 0.45

Tested by 1

runBundleSmokeTestFunction · 0.72