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

Function buildSupabaseAuthHelpers

scripts/supabase-auth-helpers.ts:7–24  ·  view source on GitHub ↗
(config: BuildConfig)

Source from the content-addressed store, hash-verified

5const PACKAGE = 'supabase-auth-helpers-qwik';
6
7export async function buildSupabaseAuthHelpers(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 await copyDir(
19 config,
20 join(config.dtsDir, 'packages', PACKAGE, 'src'),
21 join(input, 'lib', 'types')
22 );
23 console.log(`⚛️ ${PACKAGE}`);
24}

Callers 1

buildFunction · 0.90

Calls 3

panicFunction · 0.90
copyDirFunction · 0.90
joinFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…