Skip to content

Commit fc506d3

Browse files
authored
Merge pull request #21 from EvitanRelta/main
fix: project validation not working on windows
2 parents 02cadc3 + ecc0b83 commit fc506d3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/cli/utils/validate-project.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1+
12
import { readFile } from "fs/promises";
23
import { findUp } from 'find-up';
34

5+
46
export async function validateMCPProject() {
57
try {
68
const packageJsonPath = await findUp('package.json');
79

810
if (!packageJsonPath) {
911
throw new Error("Could not find package.json in current directory or any parent directories");
1012
}
11-
12-
const packageJsonContent = await readFile(packageJsonPath, 'utf-8');
13-
const package_json = JSON.parse(packageJsonContent);
14-
13+
const package_json = JSON.parse(await readFile(packageJsonPath, "utf-8"));
1514
if (
1615
!package_json.dependencies?.["mcp-framework"] &&
1716
!package_json.devDependencies?.["mcp-framework"]

0 commit comments

Comments
 (0)