-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathcheck-qwik-build.ts
47 lines (43 loc) · 1.59 KB
/
check-qwik-build.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
// verify that ../qwik/dist/core.d.ts exists or run `pnpm run build.core` in the root directory
// Also make sure that the repl-sw.js file is present, for dev mode
// we need it for development and for the REPL
import fs from 'node:fs';
import path from 'node:path';
import { spawnSync } from 'node:child_process';
import { fileURLToPath } from 'url';
let __dirname = path.dirname(fileURLToPath(import.meta.url));
const isWindows = process.platform === 'win32';
if (isWindows && __dirname.startsWith('/')) {
// in Windows __dirname starts with a / causing errors
// before
// /C:/Users/{location stuff}/qwik/packages/docs
__dirname = __dirname.substring(1);
// after
// C:/Users/{location stuff}/qwik/packages/docs
}
const qwikPkgDir = path.join(__dirname, '..', 'qwik', 'dist');
if (!fs.existsSync(path.join(qwikPkgDir, 'core-internal.d.ts'))) {
console.warn(
`\n\n=== Running 'pnpm run build.local' to generate missing imports for the docs ===\n`
);
const out = spawnSync('pnpm', ['run', 'build.local'], {
cwd: path.join(__dirname, '..', '..'),
stdio: 'inherit',
});
if (out.status !== 0) {
console.error('Failed to build local packages');
process.exit(1);
}
}
if (!fs.existsSync(path.join(__dirname, 'public', 'repl', 'repl-sw.js'))) {
console.warn(
`\n\n=== Running 'pnpm run build.repl-sw' to generate missing REPL service worker public/repl/repl-sw.js ===\n`
);
const out = spawnSync('pnpm', ['run', 'build.repl-sw'], {
stdio: 'inherit',
});
if (out.status !== 0) {
console.error('Failed to build REPL service worker');
process.exit(1);
}
}