We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ng update
1 parent 6d37ffc commit 9edeb86Copy full SHA for 9edeb86
packages/angular/cli/src/commands/update/cli.ts
@@ -6,6 +6,7 @@
6
* found in the LICENSE file at https://angular.io/license
7
*/
8
9
+import { join } from 'path';
10
import { Argv } from 'yargs';
11
import {
12
CommandModule,
@@ -33,7 +34,7 @@ export class UpdateCommandModule extends CommandModule<UpdateCommandArgs> {
33
34
35
command = 'update [packages..]';
36
describe = 'Updates your workspace and its dependencies. See https://update.angular.io/.';
- longDescriptionPath?: string | undefined;
37
+ longDescriptionPath = join(__dirname, 'long-description.md');
38
39
builder(localYargs: Argv): Argv<UpdateCommandArgs> {
40
return localYargs
0 commit comments