Skip to content

Commit 122268d

Browse files
committed
1 parent 0c3279b commit 122268d

File tree

69 files changed

+81
-81
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+81
-81
lines changed

apps/api-documenter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Read JSON files from api-extractor, generate documentation pages",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/Microsoft/web-build-tools/tree/master/apps/api-documenter"
7+
"url": "https://github.com/microsoft/rushstack/tree/master/apps/api-documenter"
88
},
99
"homepage": "https://api-extractor.com/",
1010
"license": "MIT",

apps/api-documenter/src/utils/Utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class Utilities {
2323
*/
2424
public static getSafeFilenameForName(name: string): string {
2525
// TODO: This can introduce naming collisions.
26-
// We will fix that as part of https://github.com/microsoft/web-build-tools/issues/1308
26+
// We will fix that as part of https://github.com/microsoft/rushstack/issues/1308
2727
return name.replace(Utilities._badFilenameCharsRegExp, '_').toLowerCase();
2828
}
2929
}

apps/api-extractor-model/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "A helper library for loading and saving the .api.json files created by API Extractor",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/Microsoft/web-build-tools/tree/master/apps/api-extractor-model"
7+
"url": "https://github.com/microsoft/rushstack/tree/master/apps/api-extractor-model"
88
},
99
"homepage": "https://api-extractor.com",
1010
"main": "lib/index.js",

apps/api-extractor/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# @microsoft/api-extractor
22

33

4-
![API Extractor](https://github.com/Microsoft/web-build-tools/raw/master/common/wiki-images/api-extractor-title.png?raw=true)
4+
![API Extractor](https://github.com/microsoft/rushstack/raw/master/common/wiki-images/api-extractor-title.png?raw=true)
55
<br />
66
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; https://api-extractor.com/
77

@@ -21,7 +21,7 @@
2121

2222
- **\*.d.ts rollup:** You webpacked your library into a nice **\*.js** bundle file -- so why ship your typings as a messy tree of **lib/\*.d.ts** files full of private definitions? Can't we consolidate them into a tidy **\*.d.ts** rollup file? And if you publish internal/beta/public releases, each release type should get its own **\*.d.ts** file with appropriate trimming. Developers building a production project don't want to see a bunch of **internal** and **beta** members in their VS Code IntelliSense!
2323

24-
- **Online documentation:** You have faithfully annotated each TypeScript member with nice [TSDoc](https://github.com/Microsoft/tsdoc) descriptions. Now that your library has shipped, it's time to set up [a nicely formatted](https://docs.microsoft.com/en-us/javascript/api/sp-http) API reference. What tool to use?
24+
- **Online documentation:** You have faithfully annotated each TypeScript member with nice [TSDoc](https://github.com/microsoft/tsdoc) descriptions. Now that your library has shipped, it's time to set up [a nicely formatted](https://docs.microsoft.com/en-us/javascript/api/sp-http) API reference. What tool to use?
2525

2626
**API Extractor** provides an integrated, professional-quality solution for all these problems. It is invoked at build time by your toolchain and leverages the TypeScript compiler engine to:
2727

apps/api-extractor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"repository": {
2121
"type": "git",
22-
"url": "https://github.com/Microsoft/web-build-tools/tree/master/apps/api-extractor"
22+
"url": "https://github.com/microsoft/rushstack/tree/master/apps/api-extractor"
2323
},
2424
"homepage": "https://api-extractor.com",
2525
"main": "lib/index.js",

apps/api-extractor/src/analyzer/ExportAnalyzer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ export class ExportAnalyzer {
409409

410410
if (externalModulePath === undefined) {
411411
// The implementation here only works when importing from an external module.
412-
// The full solution is tracked by: https://github.com/Microsoft/web-build-tools/issues/1029
412+
// The full solution is tracked by: https://github.com/microsoft/rushstack/issues/1029
413413
throw new Error('"import * as ___ from ___;" is not supported yet for local files.'
414414
+ '\nFailure in: ' + importDeclaration.getSourceFile().fileName);
415415
}

apps/api-extractor/src/analyzer/PackageMetadataManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class PackageMetadataManager {
6262
private readonly _packageMetadataByPackageJsonPath: Map<string, PackageMetadata>
6363
= new Map<string, PackageMetadata>();
6464

65-
// This feature is still being standardized: https://github.com/Microsoft/tsdoc/issues/7
65+
// This feature is still being standardized: https://github.com/microsoft/tsdoc/issues/7
6666
// In the future we will use the @microsoft/tsdoc library to read this file.
6767
private static _resolveTsdocMetadataPathFromPackageJson(packageFolder: string,
6868
packageJson: INodePackageJson): string {

apps/api-extractor/src/analyzer/TypeScriptInternals.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class TypeScriptInternals {
99

1010
public static getImmediateAliasedSymbol(symbol: ts.Symbol, typeChecker: ts.TypeChecker): ts.Symbol {
1111
// Compiler internal:
12-
// https://github.com/Microsoft/TypeScript/blob/v3.2.2/src/compiler/checker.ts
12+
// https://github.com/microsoft/TypeScript/blob/v3.2.2/src/compiler/checker.ts
1313
return (typeChecker as any).getImmediateAliasedSymbol(symbol); // tslint:disable-line:no-any
1414
}
1515

@@ -49,7 +49,7 @@ export class TypeScriptInternals {
4949
*/
5050
public static getJSDocCommentRanges(node: ts.Node, text: string): ts.CommentRange[] | undefined {
5151
// Compiler internal:
52-
// https://github.com/Microsoft/TypeScript/blob/v2.4.2/src/compiler/utilities.ts#L616
52+
// https://github.com/microsoft/TypeScript/blob/v2.4.2/src/compiler/utilities.ts#L616
5353

5454
return (ts as any).getJSDocCommentRanges.apply(this, arguments);
5555
}
@@ -59,7 +59,7 @@ export class TypeScriptInternals {
5959
*/
6060
public static getTextOfIdentifierOrLiteral(node: ts.Identifier | ts.StringLiteralLike | ts.NumericLiteral): string {
6161
// Compiler internal:
62-
// https://github.com/Microsoft/TypeScript/blob/v3.2.2/src/compiler/utilities.ts#L2721
62+
// https://github.com/microsoft/TypeScript/blob/v3.2.2/src/compiler/utilities.ts#L2721
6363

6464
return (ts as any).getTextOfIdentifierOrLiteral(node);
6565
}
@@ -72,7 +72,7 @@ export class TypeScriptInternals {
7272
| undefined {
7373

7474
// Compiler internal:
75-
// https://github.com/Microsoft/TypeScript/blob/v3.2.2/src/compiler/utilities.ts#L218
75+
// https://github.com/microsoft/TypeScript/blob/v3.2.2/src/compiler/utilities.ts#L218
7676

7777
return (ts as any).getResolvedModule(sourceFile, moduleNameText);
7878
}

apps/api-extractor/src/collector/Collector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ export class Collector {
437437
private _collectGlobalNames(usedNames: Set<string>): void {
438438
// As a temporary workaround, this a short list of names that appear in typical projects.
439439
// The full solution is tracked by this issue:
440-
// https://github.com/Microsoft/web-build-tools/issues/1095
440+
// https://github.com/microsoft/rushstack/issues/1095
441441
const globalNames: string[] = [
442442
'Array',
443443
'ArrayConstructor',

apps/api-extractor/src/enhancers/DocCommentEnhancer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export class DocCommentEnhancer {
152152

153153
// Is it referring to the working package? If not, we don't do any link validation, because
154154
// AstReferenceResolver doesn't support it yet (but ModelReferenceResolver does of course).
155-
// Tracked by: https://github.com/Microsoft/web-build-tools/issues/1195
155+
// Tracked by: https://github.com/microsoft/rushstack/issues/1195
156156
if (node.codeDestination.packageName === undefined
157157
|| node.codeDestination.packageName === this._collector.workingPackage.name) {
158158

@@ -192,7 +192,7 @@ export class DocCommentEnhancer {
192192

193193
// It's referencing an external package, so skip this inheritDoc tag, since AstReferenceResolver doesn't
194194
// support it yet. As a workaround, this tag will get handled later by api-documenter.
195-
// Tracked by: https://github.com/Microsoft/web-build-tools/issues/1195
195+
// Tracked by: https://github.com/microsoft/rushstack/issues/1195
196196
return;
197197
}
198198

0 commit comments

Comments
 (0)