Skip to content

chore: replace all git.io link #24836

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/cdk/schematics/testing/test-case-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ export function findBazelVersionTestCases(basePath: string) {
}

// In case runfiles are not symlinked (e.g. on Windows), we resolve all test case files using
// the Bazel runfiles manifest. Read more about the manifest here: https://git.io/fhIZE
// the Bazel runfiles manifest. Read more about the manifest here:
// https://github.com/bazelbuild/bazel/blob/701913139adc0eba49a7a9963fea4f555fcd844f/src/main/java/com/google/devtools/build/lib/analysis/SourceManifestAction.java#L214-L221
readFileSync(manifestPath, 'utf8')
.split('\n')
.forEach(line => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* automatically to this application because ng-update detected that this application
* directly used custom HammerJS gestures defined by Angular Material.
*
* Read more in the dedicated guide: https://git.io/ng-material-v9-hammer-migration
* Read more in the dedicated guide: https://github.com/angular/components/blob/3a204da37fd1366cae411b5c234517ecad199737/guides/v9-hammerjs-migration.md?
*/

import {Injectable, Inject, Optional, Type} from '@angular/core';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class HammerGesturesMigration extends DevkitMigration<null> {
'manually set up in combination with references to the Angular Material gesture ' +
'config. This target cannot be migrated completely, but all references to the ' +
'deprecated Angular Material gesture have been removed. Read more here: ' +
'https://git.io/ng-material-v9-hammer-ambiguous-usage',
'https://github.com/angular/components/blob/3a204da37fd1366cae411b5c234517ecad199737/guides/v9-hammerjs-migration.md#the-migration-reported-ambiguous-usage-what-should-i-do',
);
} else if (usedInTemplate && this._gestureConfigReferences.length) {
// Since there is a reference to the Angular Material gesture config, and we detected
Expand All @@ -184,7 +184,7 @@ export class HammerGesturesMigration extends DevkitMigration<null> {
'manually set up in combination with references to the Angular Material gesture ' +
'config. This target cannot be migrated completely. Please manually remove ' +
'references to the deprecated Angular Material gesture config. Read more here: ' +
'https://git.io/ng-material-v9-hammer-ambiguous-usage',
'https://github.com/angular/components/blob/3a204da37fd1366cae411b5c234517ecad199737/guides/v9-hammerjs-migration.md#the-migration-reported-ambiguous-usage-what-should-i-do',
);
}
} else if (this._usedInRuntime || usedInTemplate) {
Expand Down Expand Up @@ -226,7 +226,7 @@ export class HammerGesturesMigration extends DevkitMigration<null> {
'The HammerJS v9 migration for Angular Components migrated the ' +
'project to keep HammerJS installed, but detected ambiguous usage of HammerJS. Please ' +
'manually check if you can remove HammerJS from your application. More details: ' +
'https://git.io/ng-material-v9-hammer-ambiguous-usage',
'https://github.com/angular/components/blob/3a204da37fd1366cae411b5c234517ecad199737/guides/v9-hammerjs-migration.md#the-migration-reported-ambiguous-usage-what-should-i-do',
);
}
}
Expand Down Expand Up @@ -955,7 +955,7 @@ export class HammerGesturesMigration extends DevkitMigration<null> {
(this.globalUsesHammer ? 'the deprecated Angular Material gesture config.' : 'HammerJS.'),
);
context.logger.info(
'Read more about migrating tests: https://git.io/ng-material-v9-hammer-migrate-tests',
'Read more about migrating tests: https://github.com/angular/components/blob/3a204da37fd1366cae411b5c234517ecad199737/guides/v9-hammerjs-migration.md#how-to-migrate-my-tests',
);

if (!this.globalUsesHammer && this._removeHammerFromPackageJson(tree)) {
Expand Down