Skip to content

Commit e383e39

Browse files
committed
Minor wording fixes
1 parent 1bf279e commit e383e39

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

common/changes/@microsoft/gulp-core-build-typescript/qz2017-more_params_2018-04-18-17-40.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"changes": [
33
{
44
"packageName": "@microsoft/gulp-core-build-typescript",
5-
"comment": "Expose three more api extractor config parameters in gulp-core-build-typescript",
5+
"comment": "Expose three more api-extractor config parameters in gulp-core-build-typescript",
66
"type": "patch"
77
}
88
],

core-build/gulp-core-build-typescript/src/ApiExtractorTask.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export interface IApiExtractorTaskConfig {
7070
dtsRollupTrimming: boolean;
7171

7272
/**
73-
* This setting is only used if "trimming" is true.
73+
* This setting is only used if dtsRollupTrimming is true.
7474
* It indicates the folder where "npm publish" will be run for an internal release.
7575
* The default value is "./dist/internal".
7676
*
@@ -80,7 +80,7 @@ export interface IApiExtractorTaskConfig {
8080
publishFolderForInternal?: string;
8181

8282
/**
83-
* This setting is only used if "trimming" is true.
83+
* This setting is only used if dtsRollupTrimming is true.
8484
* It indicates the folder where "npm publish" will be run for a beta release.
8585
* The default value is "./dist/beta".
8686
*
@@ -91,7 +91,7 @@ export interface IApiExtractorTaskConfig {
9191
publishFolderForBeta?: string;
9292

9393
/**
94-
* This setting is only used if "trimming" is true.
94+
* This setting is only used if dtsRollupTrimming is true.
9595
* It indicates the folder where "npm publish" will be run for a public release.
9696
* The default value is "./dist/public".
9797
*

core-build/gulp-core-build-typescript/src/schemas/api-extractor.schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636
"type": "boolean"
3737
},
3838
"publishFolderForInternal": {
39-
"description": "This setting is only used if \"trimming\" is true. It indicates the folder where \"npm publish\" will be run for an internal release. The default value is \"./dist/internal\". An internal release will contain all definitions that are reachable from the entry point.",
39+
"description": "This setting is only used if \"dtsRollupTrimming\" is true. It indicates the folder where \"npm publish\" will be run for an internal release. The default value is \"./dist/internal\". An internal release will contain all definitions that are reachable from the entry point.",
4040
"type": "string"
4141
},
4242
"publishFolderForBeta": {
43-
"description": "This setting is only used if \"trimming\" is true. It indicates the folder where \"npm publish\" will be run for a beta release. The default value is \"./dist/beta\". A beta release will contain all definitions that are reachable from the entry point, except definitions marked as @alpha or @internal.",
43+
"description": "This setting is only used if \"dtsRollupTrimming\" is true. It indicates the folder where \"npm publish\" will be run for a beta release. The default value is \"./dist/beta\". A beta release will contain all definitions that are reachable from the entry point, except definitions marked as @alpha or @internal.",
4444
"type": "string"
4545
},
4646
"publishFolderForPublic": {
47-
"description": "This setting is only used if \"trimming\" is true. It indicates the folder where \"npm publish\" will be run for a public release. The default value is \"./dist/public\". A public release will contain all definitions that are reachable from the entry point, except definitions marked as @beta, @alpha, or @internal.",
47+
"description": "This setting is only used if \"dtsRollupTrimming\" is true. It indicates the folder where \"npm publish\" will be run for a public release. The default value is \"./dist/public\". A public release will contain all definitions that are reachable from the entry point, except definitions marked as @beta, @alpha, or @internal.",
4848
"type": "string"
4949
}
5050
},

0 commit comments

Comments
 (0)