Skip to content

Commit f25575e

Browse files
committed
Typofix: ..._OutputsSkupped -> ..._OutputsSkipped
1 parent b7c85c7 commit f25575e

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

src/compiler/tsbuild.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1807,7 +1807,7 @@ namespace ts {
18071807
startWatching(state, buildOrder);
18081808

18091809
return isCircularBuildOrder(buildOrder) ?
1810-
ExitStatus.ProjectReferenceCycle_OutputsSkupped :
1810+
ExitStatus.ProjectReferenceCycle_OutputsSkipped :
18111811
errorProjects ?
18121812
successfulProjects ?
18131813
ExitStatus.DiagnosticsPresent_OutputsGenerated :
@@ -1821,7 +1821,7 @@ namespace ts {
18211821

18221822
if (isCircularBuildOrder(buildOrder)) {
18231823
reportErrors(state, buildOrder.circularDiagnostics);
1824-
return ExitStatus.ProjectReferenceCycle_OutputsSkupped;
1824+
return ExitStatus.ProjectReferenceCycle_OutputsSkipped;
18251825
}
18261826

18271827
const { options, host } = state;

src/compiler/types.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3259,6 +3259,9 @@ namespace ts {
32593259
InvalidProject_OutputsSkipped = 3,
32603260

32613261
// When build is skipped because project references form cycle
3262+
ProjectReferenceCycle_OutputsSkipped = 4,
3263+
3264+
/** @deprecated Use ProjectReferenceCycle_OutputsSkipped instead. */
32623265
ProjectReferenceCycle_OutputsSkupped = 4,
32633266
}
32643267

src/testRunner/unittests/tsbuild/demo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ namespace ts {
8888
}
8989
]`
9090
),
91-
expectedExitStatus: ExitStatus.ProjectReferenceCycle_OutputsSkupped,
91+
expectedExitStatus: ExitStatus.ProjectReferenceCycle_OutputsSkipped,
9292
expectedDiagnostics: () => [
9393
getExpectedDiagnosticForProjectsInBuild("src/animals/tsconfig.json", "src/zoo/tsconfig.json", "src/core/tsconfig.json", "src/tsconfig.json"),
9494
errorDiagnostic([

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1964,6 +1964,8 @@ declare namespace ts {
19641964
DiagnosticsPresent_OutputsSkipped = 1,
19651965
DiagnosticsPresent_OutputsGenerated = 2,
19661966
InvalidProject_OutputsSkipped = 3,
1967+
ProjectReferenceCycle_OutputsSkipped = 4,
1968+
/** @deprecated Use ProjectReferenceCycle_OutputsSkipped instead. */
19671969
ProjectReferenceCycle_OutputsSkupped = 4
19681970
}
19691971
export interface EmitResult {

tests/baselines/reference/api/typescript.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1964,6 +1964,8 @@ declare namespace ts {
19641964
DiagnosticsPresent_OutputsSkipped = 1,
19651965
DiagnosticsPresent_OutputsGenerated = 2,
19661966
InvalidProject_OutputsSkipped = 3,
1967+
ProjectReferenceCycle_OutputsSkipped = 4,
1968+
/** @deprecated Use ProjectReferenceCycle_OutputsSkipped instead. */
19671969
ProjectReferenceCycle_OutputsSkupped = 4
19681970
}
19691971
export interface EmitResult {

0 commit comments

Comments
 (0)