Skip to content

Commit 63be89f

Browse files
author
Angular Builds
committed
1c154aa build: lock file maintenance
1 parent 6eb05f9 commit 63be89f

19 files changed

Lines changed: 75 additions & 37 deletions

lib/code-examples.db

0 Bytes
Binary file not shown.

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/cli",
3-
"version": "21.1.0-next.0+sha-8d8ba4f",
3+
"version": "21.1.0-next.0+sha-1c154aa",
44
"description": "CLI tool for Angular",
55
"main": "lib/cli/index.js",
66
"bin": {
@@ -25,13 +25,13 @@
2525
},
2626
"homepage": "https://github.com/angular/angular-cli",
2727
"dependencies": {
28-
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#8d8ba4f",
29-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#8d8ba4f",
30-
"@angular-devkit/schematics": "github:angular/angular-devkit-schematics-builds#8d8ba4f",
28+
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#1c154aa",
29+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#1c154aa",
30+
"@angular-devkit/schematics": "github:angular/angular-devkit-schematics-builds#1c154aa",
3131
"@inquirer/prompts": "7.10.1",
3232
"@listr2/prompt-adapter-inquirer": "3.0.5",
3333
"@modelcontextprotocol/sdk": "1.23.0",
34-
"@schematics/angular": "github:angular/schematics-angular-builds#8d8ba4f",
34+
"@schematics/angular": "github:angular/schematics-angular-builds#1c154aa",
3535
"@yarnpkg/lockfile": "1.1.0",
3636
"algoliasearch": "5.45.0",
3737
"ini": "6.0.0",
@@ -48,14 +48,14 @@
4848
"ng-update": {
4949
"migrations": "@schematics/angular/migrations/migration-collection.json",
5050
"packageGroup": {
51-
"@angular/cli": "github:angular/cli-builds#8d8ba4f",
52-
"@angular/build": "github:angular/angular-build-builds#8d8ba4f",
53-
"@angular/ssr": "github:angular/angular-ssr-builds#8d8ba4f",
54-
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#8d8ba4f",
55-
"@angular-devkit/build-angular": "github:angular/angular-devkit-build-angular-builds#8d8ba4f",
56-
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#8d8ba4f",
57-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#8d8ba4f",
58-
"@angular-devkit/schematics": "github:angular/angular-devkit-schematics-builds#8d8ba4f"
51+
"@angular/cli": "github:angular/cli-builds#1c154aa",
52+
"@angular/build": "github:angular/angular-build-builds#1c154aa",
53+
"@angular/ssr": "github:angular/angular-ssr-builds#1c154aa",
54+
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#1c154aa",
55+
"@angular-devkit/build-angular": "github:angular/angular-devkit-build-angular-builds#1c154aa",
56+
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#1c154aa",
57+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#1c154aa",
58+
"@angular-devkit/schematics": "github:angular/angular-devkit-schematics-builds#1c154aa"
5959
}
6060
},
6161
"packageManager": "pnpm@10.24.0",

src/commands/mcp/host.d.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,33 @@ export interface Host {
3131
* @returns A boolean indicating whether the path exists.
3232
*/
3333
existsSync(path: string): boolean;
34+
/**
35+
* Reads a file and returns its content.
36+
* @param path The path to the file.
37+
* @param encoding The encoding to use.
38+
* @returns A promise that resolves to the file content.
39+
*/
40+
readFile(path: string, encoding: 'utf-8'): Promise<string>;
41+
/**
42+
* Finds files matching a glob pattern.
43+
* @param pattern The glob pattern.
44+
* @param options Options for the glob search.
45+
* @returns An async iterable of file entries.
46+
*/
47+
glob(pattern: string, options: {
48+
cwd: string;
49+
}): AsyncIterable<{
50+
name: string;
51+
parentPath: string;
52+
isFile(): boolean;
53+
}>;
54+
/**
55+
* Resolves a module request from a given path.
56+
* @param request The module request to resolve.
57+
* @param from The path from which to resolve the request.
58+
* @returns The resolved module path.
59+
*/
60+
resolveModule(request: string, from: string): string;
3461
/**
3562
* Spawns a child process and returns a promise that resolves with the process's
3663
* output or rejects with a structured error.

src/commands/mcp/host.js

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/commands/mcp/host.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/commands/mcp/mcp-server.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/commands/mcp/mcp-server.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/commands/mcp/tools/examples/database-discovery.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ import type { McpToolContext } from '../tool-registry';
2525
*
2626
* @param workspacePath The absolute path to the user's `angular.json` file.
2727
* @param logger The MCP tool context logger for reporting warnings.
28+
* @param host The host interface for file system and module resolution operations.
2829
* @returns A promise that resolves to an array of objects, each containing a database path and source.
2930
*/
30-
export declare function getVersionSpecificExampleDatabases(workspacePath: string, logger: McpToolContext['logger']): Promise<{
31+
export declare function getVersionSpecificExampleDatabases(workspacePath: string, logger: McpToolContext['logger'], host: McpToolContext['host']): Promise<{
3132
dbPath: string;
3233
source: string;
3334
}[]>;

src/commands/mcp/tools/examples/database-discovery.js

Lines changed: 5 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)