We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2acded4 commit 72dc96bCopy full SHA for 72dc96b
packages/schematics/angular/migrations/update-8/update-builders.ts
@@ -42,6 +42,20 @@ export function updateBuilders() {
42
);
43
}
44
45
+ current = getPackageJsonDependency(host, 'zone.js');
46
+ if (current && current.version !== latestVersions.ZoneJs) {
47
+ updates = true;
48
+ addPackageJsonDependency(
49
+ host,
50
+ {
51
+ type: current.type,
52
+ name: 'zone.js',
53
+ version: latestVersions.ZoneJs,
54
+ overwrite: true,
55
+ },
56
+ );
57
+ }
58
+
59
if (updates) {
60
context.addTask(new NodePackageInstallTask());
61
0 commit comments