MCPcopy Index your code
hub / github.com/QwikDev/qwik / buildCreateQwikCli

Function buildCreateQwikCli

scripts/create-qwik-cli.ts:21–30  ·  view source on GitHub ↗
(config: BuildConfig)

Source from the content-addressed store, hash-verified

19const PACKAGE = 'create-qwik';
20
21export async function buildCreateQwikCli(config: BuildConfig) {
22 const srcCliDir = join(config.packagesDir, PACKAGE);
23 const distCliDir = join(srcCliDir, 'dist');
24
25 await bundleCreateQwikCli(config, srcCliDir, distCliDir);
26 await copyStartersDir(config, distCliDir, ['apps']);
27 await syncBaseStarterVersionsFromQwik(config);
28
29 console.log('🐠 create-qwik cli');
30}
31
32async function bundleCreateQwikCli(config: BuildConfig, srcCliDir: string, distCliDir: string) {
33 emptyDir(distCliDir);

Callers 1

buildFunction · 0.90

Calls 4

joinFunction · 0.85
bundleCreateQwikCliFunction · 0.85
copyStartersDirFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…