Skip to content

Commit ef4efc4

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

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3259,7 +3259,7 @@ namespace ts {
32593259
InvalidProject_OutputsSkipped = 3,
32603260

32613261
// When build is skipped because project references form cycle
3262-
ProjectReferenceCycle_OutputsSkupped = 4,
3262+
ProjectReferenceCycle_OutputsSkipped = 4,
32633263
}
32643264

32653265
export interface EmitResult {

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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1964,7 +1964,7 @@ declare namespace ts {
19641964
DiagnosticsPresent_OutputsSkipped = 1,
19651965
DiagnosticsPresent_OutputsGenerated = 2,
19661966
InvalidProject_OutputsSkipped = 3,
1967-
ProjectReferenceCycle_OutputsSkupped = 4
1967+
ProjectReferenceCycle_OutputsSkipped = 4
19681968
}
19691969
export interface EmitResult {
19701970
emitSkipped: boolean;
@@ -9336,4 +9336,4 @@ declare namespace ts.server {
93369336
}
93379337

93389338
export = ts;
9339-
export as namespace ts;
9339+
export as namespace ts;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1964,7 +1964,7 @@ declare namespace ts {
19641964
DiagnosticsPresent_OutputsSkipped = 1,
19651965
DiagnosticsPresent_OutputsGenerated = 2,
19661966
InvalidProject_OutputsSkipped = 3,
1967-
ProjectReferenceCycle_OutputsSkupped = 4
1967+
ProjectReferenceCycle_OutputsSkipped = 4
19681968
}
19691969
export interface EmitResult {
19701970
emitSkipped: boolean;
@@ -5894,4 +5894,4 @@ declare namespace ts {
58945894
function transform<T extends Node>(source: T | T[], transformers: TransformerFactory<T>[], compilerOptions?: CompilerOptions): TransformationResult<T>;
58955895
}
58965896

5897-
export = ts;
5897+
export = ts;

0 commit comments

Comments
 (0)