source: trip-planner-front/node_modules/@angular/cli/commands/update-impl.d.ts@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { Command } from '../models/command';
9import { Arguments } from '../models/interface';
10import { Schema as UpdateCommandSchema } from './update';
11export declare class UpdateCommand extends Command<UpdateCommandSchema> {
12 readonly allowMissingWorkspace = true;
13 private workflow;
14 private packageManager;
15 initialize(options: UpdateCommandSchema & Arguments): Promise<void>;
16 private executeSchematic;
17 /**
18 * @return Whether or not the migration was performed successfully.
19 */
20 private executeMigration;
21 /**
22 * @return Whether or not the migrations were performed successfully.
23 */
24 private executeMigrations;
25 private executePackageMigrations;
26 run(options: UpdateCommandSchema & Arguments): Promise<number>;
27 /**
28 * @return Whether or not the commit was successful.
29 */
30 private commit;
31 private checkCleanGit;
32 /**
33 * Checks if the current installed CLI version is older than the latest version.
34 * @returns `true` when the installed version is older.
35 */
36 private checkCLILatestVersion;
37}
Note: See TracBrowser for help on using the repository browser.