File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mcp-framework" ,
3
- "version" : " 0.1.15 " ,
3
+ "version" : " 0.1.17 " ,
4
4
"description" : " Framework for building Model Context Protocol (MCP) servers in Typescript" ,
5
5
"type" : " module" ,
6
6
"author" :
" Alex Andru <[email protected] >" ,
Original file line number Diff line number Diff line change @@ -4,20 +4,26 @@ import { join } from "path";
4
4
5
5
export async function buildFramework ( ) {
6
6
const projectDir = process . cwd ( ) ;
7
-
7
+
8
8
try {
9
- await execa ( "npx" , [ "tsc" ] , {
9
+ console . log ( `Building project in: ${ projectDir } ` ) ;
10
+
11
+ await execa ( "tsc" , [ ] , {
10
12
stdio : "inherit" ,
11
13
reject : true ,
14
+ cwd : projectDir
12
15
} ) ;
13
16
14
- const indexPath = join ( projectDir , "dist" , "index.js" ) ;
17
+ const distPath = join ( projectDir , "dist" ) ;
18
+ const projectIndexPath = join ( distPath , "index.js" ) ;
15
19
const shebang = "#!/usr/bin/env node\n" ;
16
20
17
- const content = await readFile ( indexPath , "utf8" ) ;
21
+ const content = await readFile ( projectIndexPath , "utf8" ) ;
18
22
if ( ! content . startsWith ( shebang ) ) {
19
- await writeFile ( indexPath , shebang + content ) ;
23
+ await writeFile ( projectIndexPath , shebang + content ) ;
20
24
}
25
+
26
+ console . log ( "Build complete!" ) ;
21
27
} catch ( error ) {
22
28
console . error ( "Build failed:" , error instanceof Error ? error . message : error ) ;
23
29
process . exit ( 1 ) ;
You can’t perform that action at this time.
0 commit comments