MCPcopy
hub / github.com/angular/angular-cli / Change

Interface Change

packages/schematics/angular/utility/change.ts:16–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16export interface Change {
17 apply(host: Host): Promise<void>;
18
19 // The file this change should be applied to. Some changes might not apply to
20 // a file (maybe the config).
21 readonly path: string | null;
22
23 // The order this change should be applied. Normally the position inside the file.
24 // Changes are applied from the bottom of a file to the top.
25 readonly order: number;
26
27 // The description of this change. This will be outputted in a dry or verbose run.
28 readonly description: string;
29}
30
31/**
32 * An operation that does nothing.

Callers 1

applyMethod · 0.65

Implementers 15

NoopChangepackages/schematics/angular/utility/ch
InsertChangepackages/schematics/angular/utility/ch
RemoveChangepackages/schematics/angular/utility/ch
ReplaceChangepackages/schematics/angular/utility/ch
TypeScriptPathsPluginpackages/ngtools/webpack/src/paths-plu
AngularWebpackPluginpackages/ngtools/webpack/src/ivy/plugi
HostTreepackages/angular_devkit/schematics/src
ScopedTreepackages/angular_devkit/schematics/src
NullTreepackages/angular_devkit/schematics/src
UpdateRecorderBasepackages/angular_devkit/schematics/src
DelegateTreepackages/angular_devkit/schematics/src
WatchFilesLogsPluginpackages/angular_devkit/build_angular/

Calls

no outgoing calls

Tested by

no test coverage detected