Skip to content

Commit d57fd37

Browse files
leighhallidayiansu
authored andcommitted
Convert all bit.ly links from http to https (#6239)
1 parent 0b8cfa1 commit d57fd37

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

packages/react-dev-utils/printBuildError.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = function printBuildError(err) {
3737
} catch (ignored) {
3838
console.log('Failed to minify the bundle.', err);
3939
}
40-
console.log('Read more here: http://bit.ly/CRA-build-minify');
40+
console.log('Read more here: https://bit.ly/CRA-build-minify');
4141
} else {
4242
console.log((message || err) + '\n');
4343
}

packages/react-dev-utils/printHostingInstructions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function printHostingInstructions(
3939
console.log();
4040
console.log('Find out more about deployment here:');
4141
console.log();
42-
console.log(` ${chalk.yellow('http://bit.ly/CRA-deploy')}`);
42+
console.log(` ${chalk.yellow('https://bit.ly/CRA-deploy')}`);
4343
console.log();
4444
}
4545

packages/react-scripts/scripts/start.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ if (process.env.HOST) {
7272
`If this was unintentional, check that you haven't mistakenly set it in your shell.`
7373
);
7474
console.log(
75-
`Learn more here: ${chalk.yellow('http://bit.ly/CRA-advanced-config')}`
75+
`Learn more here: ${chalk.yellow('https://bit.ly/CRA-advanced-config')}`
7676
);
7777
console.log();
7878
}

packages/react-scripts/template-typescript/src/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ ReactDOM.render(<App />, document.getElementById('root'));
88

99
// If you want your app to work offline and load faster, you can change
1010
// unregister() to register() below. Note this comes with some pitfalls.
11-
// Learn more about service workers: http://bit.ly/CRA-PWA
11+
// Learn more about service workers: https://bit.ly/CRA-PWA
1212
serviceWorker.unregister();

packages/react-scripts/template-typescript/src/serviceWorker.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// resources are updated in the background.
99

1010
// To learn more about the benefits of this model and instructions on how to
11-
// opt-in, read http://bit.ly/CRA-PWA
11+
// opt-in, read https://bit.ly/CRA-PWA
1212

1313
const isLocalhost = Boolean(
1414
window.location.hostname === 'localhost' ||
@@ -51,7 +51,7 @@ export function register(config?: Config) {
5151
navigator.serviceWorker.ready.then(() => {
5252
console.log(
5353
'This web app is being served cache-first by a service ' +
54-
'worker. To learn more, visit http://bit.ly/CRA-PWA'
54+
'worker. To learn more, visit https://bit.ly/CRA-PWA'
5555
);
5656
});
5757
} else {
@@ -79,7 +79,7 @@ function registerValidSW(swUrl: string, config?: Config) {
7979
// content until all client tabs are closed.
8080
console.log(
8181
'New content is available and will be used when all ' +
82-
'tabs for this page are closed. See http://bit.ly/CRA-PWA.'
82+
'tabs for this page are closed. See https://bit.ly/CRA-PWA.'
8383
);
8484

8585
// Execute callback

packages/react-scripts/template/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ ReactDOM.render(<App />, document.getElementById('root'));
88

99
// If you want your app to work offline and load faster, you can change
1010
// unregister() to register() below. Note this comes with some pitfalls.
11-
// Learn more about service workers: http://bit.ly/CRA-PWA
11+
// Learn more about service workers: https://bit.ly/CRA-PWA
1212
serviceWorker.unregister();

packages/react-scripts/template/src/serviceWorker.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// resources are updated in the background.
99

1010
// To learn more about the benefits of this model and instructions on how to
11-
// opt-in, read http://bit.ly/CRA-PWA
11+
// opt-in, read https://bit.ly/CRA-PWA
1212

1313
const isLocalhost = Boolean(
1414
window.location.hostname === 'localhost' ||
@@ -43,7 +43,7 @@ export function register(config) {
4343
navigator.serviceWorker.ready.then(() => {
4444
console.log(
4545
'This web app is being served cache-first by a service ' +
46-
'worker. To learn more, visit http://bit.ly/CRA-PWA'
46+
'worker. To learn more, visit https://bit.ly/CRA-PWA'
4747
);
4848
});
4949
} else {
@@ -71,7 +71,7 @@ function registerValidSW(swUrl, config) {
7171
// content until all client tabs are closed.
7272
console.log(
7373
'New content is available and will be used when all ' +
74-
'tabs for this page are closed. See http://bit.ly/CRA-PWA.'
74+
'tabs for this page are closed. See https://bit.ly/CRA-PWA.'
7575
);
7676

7777
// Execute callback

0 commit comments

Comments
 (0)