Skip to content

Commit 7c204b4

Browse files
SukkaWandrewseguin
authored andcommitted
chore: replace all git.io link (#24836)
(cherry picked from commit 626d09c)
1 parent 8002b63 commit 7c204b4

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

src/cdk/schematics/testing/test-case-setup.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ export function findBazelVersionTestCases(basePath: string) {
147147
}
148148

149149
// In case runfiles are not symlinked (e.g. on Windows), we resolve all test case files using
150-
// the Bazel runfiles manifest. Read more about the manifest here: https://git.io/fhIZE
150+
// the Bazel runfiles manifest. Read more about the manifest here:
151+
// https://github.com/bazelbuild/bazel/blob/701913139adc0eba49a7a9963fea4f555fcd844f/src/main/java/com/google/devtools/build/lib/analysis/SourceManifestAction.java#L214-L221
151152
readFileSync(manifestPath, 'utf8')
152153
.split('\n')
153154
.forEach(line => {

src/material/schematics/ng-update/migrations/hammer-gestures-v9/gesture-config.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* automatically to this application because ng-update detected that this application
55
* directly used custom HammerJS gestures defined by Angular Material.
66
*
7-
* Read more in the dedicated guide: https://git.io/ng-material-v9-hammer-migration
7+
* Read more in the dedicated guide: https://github.com/angular/components/blob/3a204da37fd1366cae411b5c234517ecad199737/guides/v9-hammerjs-migration.md?
88
*/
99

1010
import {Injectable, Inject, Optional, Type} from '@angular/core';

src/material/schematics/ng-update/migrations/hammer-gestures-v9/hammer-gestures-migration.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export class HammerGesturesMigration extends DevkitMigration<null> {
172172
'manually set up in combination with references to the Angular Material gesture ' +
173173
'config. This target cannot be migrated completely, but all references to the ' +
174174
'deprecated Angular Material gesture have been removed. Read more here: ' +
175-
'https://git.io/ng-material-v9-hammer-ambiguous-usage',
175+
'https://github.com/angular/components/blob/3a204da37fd1366cae411b5c234517ecad199737/guides/v9-hammerjs-migration.md#the-migration-reported-ambiguous-usage-what-should-i-do',
176176
);
177177
} else if (usedInTemplate && this._gestureConfigReferences.length) {
178178
// Since there is a reference to the Angular Material gesture config, and we detected
@@ -184,7 +184,7 @@ export class HammerGesturesMigration extends DevkitMigration<null> {
184184
'manually set up in combination with references to the Angular Material gesture ' +
185185
'config. This target cannot be migrated completely. Please manually remove ' +
186186
'references to the deprecated Angular Material gesture config. Read more here: ' +
187-
'https://git.io/ng-material-v9-hammer-ambiguous-usage',
187+
'https://github.com/angular/components/blob/3a204da37fd1366cae411b5c234517ecad199737/guides/v9-hammerjs-migration.md#the-migration-reported-ambiguous-usage-what-should-i-do',
188188
);
189189
}
190190
} else if (this._usedInRuntime || usedInTemplate) {
@@ -226,7 +226,7 @@ export class HammerGesturesMigration extends DevkitMigration<null> {
226226
'The HammerJS v9 migration for Angular Components migrated the ' +
227227
'project to keep HammerJS installed, but detected ambiguous usage of HammerJS. Please ' +
228228
'manually check if you can remove HammerJS from your application. More details: ' +
229-
'https://git.io/ng-material-v9-hammer-ambiguous-usage',
229+
'https://github.com/angular/components/blob/3a204da37fd1366cae411b5c234517ecad199737/guides/v9-hammerjs-migration.md#the-migration-reported-ambiguous-usage-what-should-i-do',
230230
);
231231
}
232232
}
@@ -955,7 +955,7 @@ export class HammerGesturesMigration extends DevkitMigration<null> {
955955
(this.globalUsesHammer ? 'the deprecated Angular Material gesture config.' : 'HammerJS.'),
956956
);
957957
context.logger.info(
958-
'Read more about migrating tests: https://git.io/ng-material-v9-hammer-migrate-tests',
958+
'Read more about migrating tests: https://github.com/angular/components/blob/3a204da37fd1366cae411b5c234517ecad199737/guides/v9-hammerjs-migration.md#how-to-migrate-my-tests',
959959
);
960960

961961
if (!this.globalUsesHammer && this._removeHammerFromPackageJson(tree)) {

0 commit comments

Comments
 (0)