Skip to content

Commit d946ec2

Browse files
committed
fixup! refactor(@angular/cli): import type improvements & mcp cleanups
1 parent 7fd5565 commit d946ec2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/angular/cli/src/commands/mcp/tools/ai-tutor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ with a new core identity and knowledge base.
4040
let aiTutorText: string;
4141

4242
return async () => {
43-
aiTutorText ??= await readFile(join(__dirname, '..', 'resources', 'ai-tutor.md'), 'utf-8');
43+
aiTutorText ??= await readFile(join(__dirname, '../resources/ai-tutor.md'), 'utf-8');
4444

4545
return {
4646
content: [

packages/angular/cli/src/commands/mcp/tools/best-practices.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ that **MUST** be followed for any task involving the creation, analysis, or modi
7272
* @returns A promise that resolves to the string content of the bundled markdown file.
7373
*/
7474
async function getBundledBestPractices(): Promise<string> {
75-
return readFile(join(__dirname, '..', 'resources', 'best-practices.md'), 'utf-8');
75+
return readFile(join(__dirname, '../resources/best-practices.md'), 'utf-8');
7676
}
7777

7878
/**

0 commit comments

Comments
 (0)