Skip to content

Commit 9f98983

Browse files
committed
Update the web site URL
1 parent 75e3f80 commit 9f98983

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

apps/rush-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"node": ">=5.6.0"
1111
},
1212
"engineStrict": true,
13-
"homepage": "http://aka.ms/rush",
13+
"homepage": "https://rushjs.io",
1414
"main": "lib/index.js",
1515
"typings": "dist/rush-lib.d.ts",
1616
"tsdoc": {

apps/rush-lib/src/RushConstants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export namespace RushConstants {
116116
/**
117117
* The URL ("http://rushjs.io") for the Rush web site.
118118
*/
119-
export const rushWebSiteUrl: string = 'http://rushjs.io';
119+
export const rushWebSiteUrl: string = 'https://rushjs.io';
120120

121121
/**
122122
* The name of the NPM package for the Rush tool ("@microsoft/rush").

apps/rush/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
![rush](https://github.com/Microsoft/web-build-tools/blob/master/common/wiki-images/rush-logo.png?raw=true)
55
<br />
6-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; https://aka.ms/rush
6+
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; https://rushjs.io
77

88
<!-- -------------------------------------------------------------------------- -->
99
<!-- Text below this line should stay in sync with Rush.md from the GitHub wiki -->
@@ -19,7 +19,7 @@
1919

2020
- **Subset and incremental builds:** If you only plan to work with a few projects from your repo, `rush rebuild --to <project>` does a clean build of just your upstream dependencies. After you make changes, `rush rebuild --from <project>` does a clean build of only the affected downstream projects. And if your toolchain is [package-deps-hash](https://www.npmjs.com/package/@microsoft/package-deps-hash) enabled, `rush build` delivers a powerful cross-project incremental build (that also supports subset builds).
2121

22-
- **Cyclic dependencies:** If you have hammers that build hammer-factory-factories, Rush has you covered! When a package indirectly depends on an older version of itself, projects in the cycle use the last published version, whereas other projects still get the latest bits.
22+
- **Cyclic dependencies:** If you have hammers that build hammer-factory-factories, Rush has you covered! When a package indirectly depends on an older version of itself, projects in the cycle use the last published version, whereas other projects still get the latest bits.
2323

2424
- **Bulk publishing:** When it's time to do a release, Rush can detect which packages have changes, automatically bump all the appropriate version numbers, and run `npm publish` in each folder. If you like, configure your server to automatically run `rush publish` every hour.
2525

@@ -59,4 +59,4 @@ _(If you don't have a GitHub account set up, you can use `rush install --bypass-
5959

6060
# Getting Started
6161

62-
The GitHub wiki has complete, up-to-date documentation: https://aka.ms/rush
62+
The GitHub wiki has complete, up-to-date documentation: https://rushjs.io

apps/rush/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"node": ">=5.6.0"
2222
},
2323
"engineStrict": true,
24-
"homepage": "http://aka.ms/rush",
24+
"homepage": "https://rushjs.io",
2525
"scripts": {
2626
"build": "gulp test --clean"
2727
},

0 commit comments

Comments
 (0)