Skip to content

Commit eb98c87

Browse files
committed
update link
Signed-off-by: Cursor Agent <[email protected]>
1 parent d829f07 commit eb98c87

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libs/vscode/nx-conversion/src/lib/vscode-nx-conversion.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let run = false;
66
export async function initNxConversion(
77
context: ExtensionContext,
88
isAngularWorkspace: boolean,
9-
isNxWorkspace: boolean
9+
isNxWorkspace: boolean,
1010
) {
1111
let workspaceType: 'nx' | 'angular' | 'angularWithNx' = 'nx';
1212
if (isNxWorkspace && isAngularWorkspace) {
@@ -33,7 +33,7 @@ export async function initNxConversion(
3333
'nxConsole.migrateAngularCliToNx',
3434
() => {
3535
commands.executeCommand('nx.init', true);
36-
}
36+
},
3737
);
3838
context.subscriptions.push(command);
3939

@@ -45,7 +45,7 @@ export async function initNxConversion(
4545
const answer = await window.showInformationMessage(
4646
`Want to migrate? Migrate your Angular workspace to Nx and get features like remote caching, distributed builds, and atomized tests out of the box.`,
4747
'Migrate Now',
48-
'Learn More'
48+
'Learn More',
4949
);
5050
if (answer === 'Migrate Now') {
5151
commands.executeCommand('nxConsole.migrateAngularCliToNx');
@@ -54,7 +54,7 @@ export async function initNxConversion(
5454
if (answer === 'Learn More') {
5555
commands.executeCommand(
5656
'vscode.open',
57-
'https://nx.dev/recipes/adopting-nx/migration-angular'
57+
'https://nx.dev/technologies/angular/migration/angular#migrating-an-angular-cli-project-to-nx?utm_source=nx-console',
5858
);
5959
return;
6060
}

0 commit comments

Comments
 (0)