You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`build`| Perform a one-off, non-watched build using `ng build`. | ✅ | ❌ |
25
-
|`modernize`| Performs code migrations and provides further instructions on how to modernize Angular code to align with the latest best practices and syntax. [Learn more](/reference/migrations)| ✅ | ❌ |
26
25
|`devserver.start`| Asynchronously starts a development server that watches the workspace for changes, similar to running `ng serve`. Since this is asynchronous it returns immediately. To manage the resulting server, use the `devserver.stop` and `devserver.wait_for_build` tools. | ✅ | ✅ |
27
26
|`devserver.stop`| Stops a development server started by `devserver.start`. | ✅ | ✅ |
28
27
|`devserver.wait_for_build`| Returns the output logs of the most recent build in a running development server started by `devserver.start`. If a build is currently ongoing, it will first wait for that build to complete and then return the logs. | ✅ | ✅ |
28
+
|`e2e`| Executes the end-to-end tests configured in the project. | ✅ | ✅ |
29
+
|`modernize`| Performs code migrations and provides further instructions on how to modernize Angular code to align with the latest best practices and syntax. [Learn more](https://angular.dev/reference/migrations)| ✅ | ❌ |
30
+
|`test`| Runs the project's unit tests. | ✅ | ✅ |
29
31
30
32
## Get Started
31
33
@@ -133,11 +135,11 @@ For other IDEs, check your IDE's documentation for the proper location of the MC
133
135
134
136
The `mcp` command can be configured with the following options passed as arguments in your IDE's MCP configuration:
|`--read-only`|`boolean`| Only register tools that do not make changes to the project. Your editor or coding agent may still perform edits. |`false`|
139
-
|`--local-only`|`boolean`| Only register tools that do not require an internet connection. Your editor or coding agent may still send data over the network. |`false`|
140
-
|`--experimental-tool`<br>`-E`|`string`| Enable an [experimental tool](#experimental-tools). Separate multiple options by spaces, e.g. `-E tool_a tool_b`. You can also enable tool groups like `devserver` to enable all related tools at once, e.g.`-E devserver`. ||
|`--read-only`|`boolean`| Only register tools that do not make changes to the project. Your editor or coding agent may still perform edits. |`false`|
141
+
|`--local-only`|`boolean`| Only register tools that do not require an internet connection. Your editor or coding agent may still send data over the network. |`false`|
142
+
|`--experimental-tool`<br>`-E`|`string`| Enable an [experimental tool](#experimental-tools). Separate multiple options by spaces, e.g. `-E tool_a tool_b`. Enable all `devserver.x`tools by using`-E devserver`. ||
141
143
142
144
For example, to run the server in read-only mode in VS Code, you would update your `mcp.json` like this:
|`fieldTree`| Reference to the `FieldTree` where the error occurred |
117
117
118
118
NOTE: The `message` property is optional. Validators can provide custom error messages, but if not specified, you may need to map error `kind` values to your own messages.
Copy file name to clipboardExpand all lines: devtools/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-view/property-view-body/property-view-body.component.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -109,6 +109,7 @@ export class PropertyViewBodyComponent {
109
109
this.controller().logValue(node);
110
110
this._snackBar.open(`Logged value of '${node.prop.name}' to the console`,'Dismiss',{
0 commit comments