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

Function buildQwikLabs

scripts/qwik-labs.ts:7–19  ·  view source on GitHub ↗
(config: BuildConfig)

Source from the content-addressed store, hash-verified

5const PACKAGE = 'qwik-labs';
6
7export async function buildQwikLabs(config: BuildConfig) {
8 const input = join(config.packagesDir, PACKAGE);
9
10 const result = await execa('pnpm', ['build'], {
11 stdout: 'inherit',
12 cwd: input,
13 });
14
15 if (result.failed) {
16 panic(`tsc failed`);
17 }
18 console.log(`⚛️ ${PACKAGE}`);
19}

Callers 1

buildFunction · 0.90

Calls 2

panicFunction · 0.90
joinFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…