|
| 1 | +#!/usr/bin/env node |
1 | 2 | import { execa } from "execa";
|
2 | 3 | import { readFile, writeFile } from "fs/promises";
|
3 | 4 | import { join } from "path";
|
4 |
| -import { findUp } from "find-up"; |
| 5 | + |
| 6 | +process.stderr.write("MCP Build Script Starting...\n"); |
5 | 7 |
|
6 | 8 | export async function buildFramework() {
|
7 |
| - const projectRoot = await findUp(async directory => { |
8 |
| - const pkgPath = join(directory, 'package.json'); |
9 |
| - const tsConfigPath = join(directory, 'tsconfig.json'); |
| 9 | + process.stderr.write("Finding project root...\n"); |
| 10 | + |
| 11 | + const startDir = process.cwd(); |
| 12 | + process.stderr.write(`Starting search from: ${startDir}\n`); |
| 13 | + |
| 14 | + let projectRoot: string | null = null; |
| 15 | + try { |
| 16 | + const pkgPath = join(startDir, 'package.json'); |
| 17 | + const tsConfigPath = join(startDir, 'tsconfig.json'); |
10 | 18 |
|
11 |
| - try { |
12 |
| - const [pkgContent, tsConfigContent] = await Promise.all([ |
13 |
| - readFile(pkgPath, 'utf8').catch(() => null), |
14 |
| - readFile(tsConfigPath, 'utf8').catch(() => null) |
15 |
| - ]); |
16 |
| - |
17 |
| - if (pkgContent && tsConfigContent) { |
18 |
| - return directory; |
19 |
| - } |
20 |
| - } catch { |
21 |
| - return undefined; |
| 19 | + process.stderr.write(`Checking for package.json at: ${pkgPath}\n`); |
| 20 | + const [pkgContent, _tsConfigContent] = await Promise.all([ |
| 21 | + readFile(pkgPath, 'utf8'), |
| 22 | + readFile(tsConfigPath, 'utf8') |
| 23 | + ]); |
| 24 | + |
| 25 | + const pkg = JSON.parse(pkgContent); |
| 26 | + if (pkg.dependencies?.["mcp-framework"]) { |
| 27 | + projectRoot = startDir; |
| 28 | + process.stderr.write(`Found MCP project at current directory: ${projectRoot}\n`); |
22 | 29 | }
|
23 |
| - }); |
| 30 | + } catch (error) { |
| 31 | + process.stderr.write(`Error checking current directory: ${error instanceof Error ? error.message : String(error)}\n`); |
| 32 | + } |
24 | 33 |
|
25 | 34 | if (!projectRoot) {
|
26 |
| - throw new Error('Could not find target project root directory'); |
| 35 | + process.stderr.write("Error: Current directory is not an MCP project\n"); |
| 36 | + throw new Error('Current directory must be an MCP project with mcp-framework as a dependency'); |
27 | 37 | }
|
28 | 38 |
|
29 | 39 | try {
|
30 |
| - await execa("tsc", [], { |
| 40 | + process.stderr.write(`Running tsc in ${projectRoot}\n`); |
| 41 | + |
| 42 | + const tscCommand = process.platform === 'win32' ? ['npx.cmd', 'tsc'] : ['npx', 'tsc']; |
| 43 | + |
| 44 | + await execa(tscCommand[0], [tscCommand[1]], { |
| 45 | + cwd: projectRoot, |
31 | 46 | stdio: "inherit",
|
32 |
| - reject: true, |
33 |
| - cwd: projectRoot |
| 47 | + env: { |
| 48 | + ...process.env, |
| 49 | + ELECTRON_RUN_AS_NODE: "1", |
| 50 | + FORCE_COLOR: "1" |
| 51 | + } |
34 | 52 | });
|
35 | 53 |
|
36 | 54 | const distPath = join(projectRoot, "dist");
|
37 | 55 | const projectIndexPath = join(distPath, "index.js");
|
38 | 56 | const shebang = "#!/usr/bin/env node\n";
|
39 | 57 |
|
40 |
| - const content = await readFile(projectIndexPath, "utf8"); |
41 |
| - if (!content.startsWith(shebang)) { |
42 |
| - await writeFile(projectIndexPath, shebang + content); |
| 58 | + process.stderr.write("Adding shebang to index.js...\n"); |
| 59 | + try { |
| 60 | + const content = await readFile(projectIndexPath, "utf8"); |
| 61 | + if (!content.startsWith(shebang)) { |
| 62 | + await writeFile(projectIndexPath, shebang + content); |
| 63 | + } |
| 64 | + } catch (error) { |
| 65 | + process.stderr.write(`Error processing index.js: ${error instanceof Error ? error.message : String(error)}\n`); |
| 66 | + throw error; |
43 | 67 | }
|
| 68 | + |
| 69 | + process.stderr.write("Build completed successfully!\n"); |
44 | 70 | } catch (error) {
|
45 |
| - console.error("Build failed:", error instanceof Error ? error.message : error); |
| 71 | + process.stderr.write(`Build error: ${error instanceof Error ? error.message : String(error)}\n`); |
46 | 72 | process.exit(1);
|
47 | 73 | }
|
48 | 74 | }
|
49 | 75 |
|
50 |
| -if (import.meta.url === new URL(import.meta.url).href) { |
51 |
| - buildFramework().catch(console.error); |
| 76 | +if (import.meta.url.startsWith('file:')) { |
| 77 | + process.stderr.write("Script running as main module\n"); |
| 78 | + buildFramework().catch(error => { |
| 79 | + process.stderr.write(`Fatal error: ${error instanceof Error ? error.message : String(error)}\n`); |
| 80 | + process.exit(1); |
| 81 | + }); |
52 | 82 | }
|
0 commit comments