Skip to content

Commit 6379288

Browse files
committed
Bump cyclic dependencies.
1 parent 077fef7 commit 6379288

File tree

135 files changed

+1610
-1437
lines changed

Some content is hidden

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

135 files changed

+1610
-1437
lines changed

apps/api-documenter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"js-yaml": "~3.9.1"
2424
},
2525
"devDependencies": {
26-
"@microsoft/rush-stack-compiler-3.0": "0.5.0",
26+
"@microsoft/rush-stack-compiler-3.1": "0.5.0",
2727
"@microsoft/node-library-build": "6.0.27",
2828
"@types/js-yaml": "3.9.1",
2929
"@types/node": "8.5.8",

apps/api-documenter/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.0/includes/tsconfig-node.json",
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.1/includes/tsconfig-node.json",
33
"compilerOptions": {
44
"types": [
55
"jest"

apps/api-documenter/tslint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"extends": "@microsoft/rush-stack-compiler-3.0/includes/tslint.json"
2+
"extends": "@microsoft/rush-stack-compiler-3.1/includes/tslint.json"
33
}
Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
{
2-
"enabled": true,
3-
"apiReviewFolder": "../../common/reviews/api",
4-
"apiJsonFolder": "./temp",
5-
"entry": "lib/index.d.ts",
6-
"generateDtsRollup": true
2+
"project": {
3+
"entryPointSourceFile": "lib/index.d.ts"
4+
},
5+
"compiler": {
6+
"rootFolder": ".",
7+
"configType": "tsconfig"
8+
},
9+
"apiReviewFile": {
10+
"enabled": true,
11+
"apiReviewFolder": "../../common/reviews/api"
12+
},
13+
"apiJsonFile": {
14+
"enabled": true,
15+
"outputFolder": "./temp"
16+
},
17+
"dtsRollup": {
18+
"enabled": true
19+
}
720
}

apps/api-extractor/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
"resolve": "1.8.1"
4444
},
4545
"devDependencies": {
46-
"@microsoft/rush-stack-compiler-3.0": "0.1.0",
46+
"@microsoft/rush-stack-compiler-3.1": "0.5.0",
4747
"tslint-microsoft-contrib": "~5.2.1",
4848
"@types/lodash": "4.14.116",
4949
"gulp": "~3.9.1",
50-
"@microsoft/node-library-build": "6.0.15",
50+
"@microsoft/node-library-build": "6.0.27",
5151
"@types/jest": "23.3.11"
5252
}
5353
}
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
22
// See LICENSE in the project root for license information.
33

4-
// tslint:disable-next-line:no-any
5-
export type Constructor<T = {}> = new (...args: any[]) => T;
4+
/**
5+
* @public
6+
*/
7+
export type Constructor<T = {}> = new (...args: any[]) => T; // tslint:disable-line:no-any
68

9+
/**
10+
* @public
11+
*/
712
export type PropertiesOf<T> = { [K in keyof T]: T[K] };
813

914
export type Mixin<TBase, TMixin> = TBase & Constructor<TMixin>;

apps/api-extractor/src/start.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,7 @@ console.log(os.EOL + colors.bold(`api-extractor ${Extractor.version} `
1212

1313
const parser: ApiExtractorCommandLine = new ApiExtractorCommandLine();
1414

15-
parser.execute();
15+
parser.execute().catch((error) => {
16+
console.error(colors.red(`An unexpected error occurred: ${error}`));
17+
process.exit(1);
18+
});

apps/api-extractor/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.0/includes/tsconfig-node.json",
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.1/includes/tsconfig-node.json",
33

44
"compilerOptions": {
55
"types": [
6-
"jest"
6+
"jest",
7+
"node"
78
]
89
}
910
}

apps/api-extractor/tslint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@microsoft/rush-stack-compiler-3.0/includes/tslint.json",
2+
"extends": "@microsoft/rush-stack-compiler-3.1/includes/tslint.json",
33
"rules": {
44
"member-ordering": false
55
}

apps/rush-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"z-schema": "~3.18.3"
5050
},
5151
"devDependencies": {
52-
"@microsoft/rush-stack-compiler-3.0": "0.5.0",
52+
"@microsoft/rush-stack-compiler-3.1": "0.5.0",
5353
"@microsoft/node-library-build": "6.0.27",
5454
"@types/node": "8.5.8",
5555
"@types/node-fetch": "1.6.9",

0 commit comments

Comments
 (0)