mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-12 12:57:11 -06:00
Typofix: ..._OutputsSkupped -> ..._OutputsSkipped
This commit is contained in:
parent
b7c85c7382
commit
f25575e5fe
@ -1807,7 +1807,7 @@ namespace ts {
|
||||
startWatching(state, buildOrder);
|
||||
|
||||
return isCircularBuildOrder(buildOrder) ?
|
||||
ExitStatus.ProjectReferenceCycle_OutputsSkupped :
|
||||
ExitStatus.ProjectReferenceCycle_OutputsSkipped :
|
||||
errorProjects ?
|
||||
successfulProjects ?
|
||||
ExitStatus.DiagnosticsPresent_OutputsGenerated :
|
||||
@ -1821,7 +1821,7 @@ namespace ts {
|
||||
|
||||
if (isCircularBuildOrder(buildOrder)) {
|
||||
reportErrors(state, buildOrder.circularDiagnostics);
|
||||
return ExitStatus.ProjectReferenceCycle_OutputsSkupped;
|
||||
return ExitStatus.ProjectReferenceCycle_OutputsSkipped;
|
||||
}
|
||||
|
||||
const { options, host } = state;
|
||||
|
||||
@ -3259,6 +3259,9 @@ namespace ts {
|
||||
InvalidProject_OutputsSkipped = 3,
|
||||
|
||||
// When build is skipped because project references form cycle
|
||||
ProjectReferenceCycle_OutputsSkipped = 4,
|
||||
|
||||
/** @deprecated Use ProjectReferenceCycle_OutputsSkipped instead. */
|
||||
ProjectReferenceCycle_OutputsSkupped = 4,
|
||||
}
|
||||
|
||||
|
||||
@ -88,7 +88,7 @@ namespace ts {
|
||||
}
|
||||
]`
|
||||
),
|
||||
expectedExitStatus: ExitStatus.ProjectReferenceCycle_OutputsSkupped,
|
||||
expectedExitStatus: ExitStatus.ProjectReferenceCycle_OutputsSkipped,
|
||||
expectedDiagnostics: () => [
|
||||
getExpectedDiagnosticForProjectsInBuild("src/animals/tsconfig.json", "src/zoo/tsconfig.json", "src/core/tsconfig.json", "src/tsconfig.json"),
|
||||
errorDiagnostic([
|
||||
|
||||
@ -1964,6 +1964,8 @@ declare namespace ts {
|
||||
DiagnosticsPresent_OutputsSkipped = 1,
|
||||
DiagnosticsPresent_OutputsGenerated = 2,
|
||||
InvalidProject_OutputsSkipped = 3,
|
||||
ProjectReferenceCycle_OutputsSkipped = 4,
|
||||
/** @deprecated Use ProjectReferenceCycle_OutputsSkipped instead. */
|
||||
ProjectReferenceCycle_OutputsSkupped = 4
|
||||
}
|
||||
export interface EmitResult {
|
||||
|
||||
@ -1964,6 +1964,8 @@ declare namespace ts {
|
||||
DiagnosticsPresent_OutputsSkipped = 1,
|
||||
DiagnosticsPresent_OutputsGenerated = 2,
|
||||
InvalidProject_OutputsSkipped = 3,
|
||||
ProjectReferenceCycle_OutputsSkipped = 4,
|
||||
/** @deprecated Use ProjectReferenceCycle_OutputsSkipped instead. */
|
||||
ProjectReferenceCycle_OutputsSkupped = 4
|
||||
}
|
||||
export interface EmitResult {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user