docs: update blog, analytics, hydration links aio->adev

This commit is contained in:
David LJ 2024-05-24 18:39:25 +02:00 committed by Alan Agius
parent 89fbd0f9a2
commit 767652bdcc
3 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ export async function promptAnalytics(
`
Would you like to share pseudonymous usage data about this project with the Angular Team
at Google under Google's Privacy Policy at https://policies.google.com/privacy. For more
details and how to change this setting, see https://angular.io/analytics.
details and how to change this setting, see https://angular.dev/cli/analytics.
`,
false,

View File

@ -92,7 +92,7 @@ export async function execute(
context: BuilderContext,
): Promise<BuilderOutput> {
context.logger.warn(
'Protractor has reached end-of-life and is no longer supported by the Angular team. The `protractor` builder will be removed in a future Angular major version. For additional information and alternatives, please see https://blog.angular.io/protractor-deprecation-update-august-2023-2beac7402ce0.',
'Protractor has reached end-of-life and is no longer supported by the Angular team. The `protractor` builder will be removed in a future Angular major version. For additional information and alternatives, please see https://blog.angular.dev/protractor-deprecation-update-august-2023-2beac7402ce0.',
);
// ensure that only one of these options is used

View File

@ -246,7 +246,7 @@ async function checkTsConfigForPreserveWhitespacesSetting(
`"preserveWhitespaces" was set in "${tsConfigPath}". ` +
'Make sure that this setting is set consistently in both "tsconfig.server.json" for your server side ' +
'and "tsconfig.app.json" for your client side. A mismatched value will cause hydration to break.\n' +
'For more information see: https://angular.io/guide/hydration#preserve-whitespaces',
'For more information see: https://angular.dev/guide/hydration#preserve-whitespaces-configuration',
);
}
}