diff --git a/src/compiler/tsbuild.ts b/src/compiler/tsbuild.ts index 8be92079a5f..2f152d294a7 100644 --- a/src/compiler/tsbuild.ts +++ b/src/compiler/tsbuild.ts @@ -316,7 +316,7 @@ namespace ts { */ export function createBuilderStatusReporter(system: System, pretty?: boolean): DiagnosticReporter { return diagnostic => { - let output = pretty ? `[${formatColorAndReset((system.now ? system.now() : new Date()).toLocaleTimeString(), ForegroundColorEscapeSequences.Grey)}] ` : `${(system.now ? system.now() : new Date()).toLocaleTimeString()} - `; + let output = pretty ? `[${formatColorAndReset(getLocaleTimeString(system), ForegroundColorEscapeSequences.Grey)}] ` : `${getLocaleTimeString(system)} - `; output += `${flattenDiagnosticMessageText(diagnostic.messageText, system.newLine)}${system.newLine + system.newLine}`; system.write(output); }; diff --git a/src/compiler/watch.ts b/src/compiler/watch.ts index 9634f5477f1..3ee30ae28c3 100644 --- a/src/compiler/watch.ts +++ b/src/compiler/watch.ts @@ -54,6 +54,15 @@ namespace ts { : newLine; } + /** + * Get locale specific time based on whether we are in test mode + */ + export function getLocaleTimeString(system: System) { + return !system.now ? + new Date().toLocaleTimeString() : + system.now().toLocaleTimeString("en-US", { timeZone: "UTC" }); + } + /** * Create a function that reports watch status by writing to the system and handles the formating of the diagnostic */ @@ -61,7 +70,7 @@ namespace ts { return pretty ? (diagnostic, newLine, options) => { clearScreenIfNotWatchingForFileChanges(system, diagnostic, options); - let output = `[${formatColorAndReset(new Date().toLocaleTimeString(), ForegroundColorEscapeSequences.Grey)}] `; + let output = `[${formatColorAndReset(getLocaleTimeString(system), ForegroundColorEscapeSequences.Grey)}] `; output += `${flattenDiagnosticMessageText(diagnostic.messageText, system.newLine)}${newLine + newLine}`; system.write(output); } : @@ -72,7 +81,7 @@ namespace ts { output += newLine; } - output += `${new Date().toLocaleTimeString()} - `; + output += `${getLocaleTimeString(system)} - `; output += `${flattenDiagnosticMessageText(diagnostic.messageText, system.newLine)}${getPlainDiagnosticFollowingNewLines(diagnostic, newLine)}`; system.write(output); diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/modules-and-globals-mixed-in-amd.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/modules-and-globals-mixed-in-amd.js index d84e3661d87..156e26088e0 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/modules-and-globals-mixed-in-amd.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/modules-and-globals-mixed-in-amd.js @@ -1,18 +1,18 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/app --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:04:00 PM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' +12:04:00 AM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' -4:04:00 PM - Building project '/src/lib/tsconfig.json'... +12:04:00 AM - Building project '/src/lib/tsconfig.json'... -4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed +12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed -4:04:00 PM - Updating output of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/app/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/multiple-emitHelpers-in-all-projects.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/multiple-emitHelpers-in-all-projects.js index 99f30881334..e09e87242a1 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/multiple-emitHelpers-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/multiple-emitHelpers-in-all-projects.js @@ -1,18 +1,18 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/app --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:04:00 PM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' +12:04:00 AM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' -4:04:00 PM - Building project '/src/lib/tsconfig.json'... +12:04:00 AM - Building project '/src/lib/tsconfig.json'... -4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed +12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed -4:04:00 PM - Updating output of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/app/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/multiple-prologues-in-all-projects.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/multiple-prologues-in-all-projects.js index aef9b460c46..93a7cbf7326 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/multiple-prologues-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/multiple-prologues-in-all-projects.js @@ -1,18 +1,18 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/app --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:04:00 PM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' +12:04:00 AM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' -4:04:00 PM - Building project '/src/lib/tsconfig.json'... +12:04:00 AM - Building project '/src/lib/tsconfig.json'... -4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed +12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed -4:04:00 PM - Updating output of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/app/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/shebang-in-all-projects.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/shebang-in-all-projects.js index 552db042308..e3daf15bcac 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/shebang-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/shebang-in-all-projects.js @@ -1,18 +1,18 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/app --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:04:00 PM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' +12:04:00 AM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' -4:04:00 PM - Building project '/src/lib/tsconfig.json'... +12:04:00 AM - Building project '/src/lib/tsconfig.json'... -4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed +12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed -4:04:00 PM - Updating output of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/app/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/stripInternal.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/stripInternal.js index 54ef4f2ee1f..6f6ca38435a 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/stripInternal.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/stripInternal.js @@ -1,18 +1,18 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/app --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:04:00 PM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' +12:04:00 AM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' -4:04:00 PM - Building project '/src/lib/tsconfig.json'... +12:04:00 AM - Building project '/src/lib/tsconfig.json'... -4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed +12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed -4:04:00 PM - Updating output of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/app/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/triple-slash-refs-in-all-projects.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/triple-slash-refs-in-all-projects.js index 3f4f863e663..b07879caae0 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/triple-slash-refs-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/triple-slash-refs-in-all-projects.js @@ -1,18 +1,18 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/app --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:04:00 PM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' +12:04:00 AM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' -4:04:00 PM - Building project '/src/lib/tsconfig.json'... +12:04:00 AM - Building project '/src/lib/tsconfig.json'... -4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed +12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed -4:04:00 PM - Updating output of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/app/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-all-projects.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-all-projects.js index 16696da278d..27bdfed7421 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-all-projects.js @@ -1,18 +1,18 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/app --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:08:00 PM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' +12:08:00 AM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' -4:08:00 PM - Building project '/src/lib/tsconfig.json'... +12:08:00 AM - Building project '/src/lib/tsconfig.json'... -4:08:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed +12:08:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed -4:08:00 PM - Updating output of project '/src/app/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/app/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/multiple-prologues-in-all-projects.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/multiple-prologues-in-all-projects.js index c14352761c7..ae8b69e86b9 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/multiple-prologues-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/multiple-prologues-in-all-projects.js @@ -1,18 +1,18 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/app --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:08:00 PM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' +12:08:00 AM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' -4:08:00 PM - Building project '/src/lib/tsconfig.json'... +12:08:00 AM - Building project '/src/lib/tsconfig.json'... -4:08:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed +12:08:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed -4:08:00 PM - Updating output of project '/src/app/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/app/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/stripInternal.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/stripInternal.js index 0ed0c54963e..544b25a544d 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/stripInternal.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/stripInternal.js @@ -1,16 +1,16 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/app --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:08:00 PM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' +12:08:00 AM - Project 'src/lib/tsconfig.json' is out of date because oldest output 'src/lib/module.js' is older than newest input 'src/lib/file1.ts' -4:08:00 PM - Building project '/src/lib/tsconfig.json'... +12:08:00 AM - Building project '/src/lib/tsconfig.json'... -4:08:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed +12:08:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed -4:08:00 PM - Updating output of project '/src/app/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/modules-and-globals-mixed-in-amd.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/modules-and-globals-mixed-in-amd.js index 2773ed36d67..1e6b3c5f9d3 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/modules-and-globals-mixed-in-amd.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/modules-and-globals-mixed-in-amd.js @@ -1,16 +1,16 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/app --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist +12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist -4:01:00 PM - Building project '/src/lib/tsconfig.json'... +12:01:00 AM - Building project '/src/lib/tsconfig.json'... -4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist +12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist -4:01:00 PM - Building project '/src/app/tsconfig.json'... +12:01:00 AM - Building project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/multiple-emitHelpers-in-all-projects.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/multiple-emitHelpers-in-all-projects.js index bbc069cc44f..4bef255a862 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/multiple-emitHelpers-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/multiple-emitHelpers-in-all-projects.js @@ -1,16 +1,16 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/app --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist +12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist -4:01:00 PM - Building project '/src/lib/tsconfig.json'... +12:01:00 AM - Building project '/src/lib/tsconfig.json'... -4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist +12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist -4:01:00 PM - Building project '/src/app/tsconfig.json'... +12:01:00 AM - Building project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/multiple-prologues-in-all-projects.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/multiple-prologues-in-all-projects.js index b87b167bc66..0a28b0c5003 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/multiple-prologues-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/multiple-prologues-in-all-projects.js @@ -1,16 +1,16 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/app --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist +12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist -4:01:00 PM - Building project '/src/lib/tsconfig.json'... +12:01:00 AM - Building project '/src/lib/tsconfig.json'... -4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist +12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist -4:01:00 PM - Building project '/src/app/tsconfig.json'... +12:01:00 AM - Building project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/shebang-in-all-projects.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/shebang-in-all-projects.js index 48e53ba2ecb..16c2c89eab9 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/shebang-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/shebang-in-all-projects.js @@ -1,16 +1,16 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/app --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist +12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist -4:01:00 PM - Building project '/src/lib/tsconfig.json'... +12:01:00 AM - Building project '/src/lib/tsconfig.json'... -4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist +12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist -4:01:00 PM - Building project '/src/app/tsconfig.json'... +12:01:00 AM - Building project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/stripInternal.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/stripInternal.js index 2180d402e80..2d2bd9809d6 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/stripInternal.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/stripInternal.js @@ -1,16 +1,16 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/app --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist +12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist -4:01:00 PM - Building project '/src/lib/tsconfig.json'... +12:01:00 AM - Building project '/src/lib/tsconfig.json'... -4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist +12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist -4:01:00 PM - Building project '/src/app/tsconfig.json'... +12:01:00 AM - Building project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/triple-slash-refs-in-all-projects.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/triple-slash-refs-in-all-projects.js index 352f657481b..50259e2c93d 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/triple-slash-refs-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/triple-slash-refs-in-all-projects.js @@ -1,16 +1,16 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/app --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist +12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist -4:01:00 PM - Building project '/src/lib/tsconfig.json'... +12:01:00 AM - Building project '/src/lib/tsconfig.json'... -4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist +12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist -4:01:00 PM - Building project '/src/app/tsconfig.json'... +12:01:00 AM - Building project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/when-the-module-resolution-finds-original-source-file.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/when-the-module-resolution-finds-original-source-file.js index 23e2db1476a..9bc7340630f 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/when-the-module-resolution-finds-original-source-file.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/when-the-module-resolution-finds-original-source-file.js @@ -1,16 +1,16 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc -b /src/app --verbose -4:00:00 PM - Projects in this build: +12:00:00 AM - Projects in this build: * src/lib/tsconfig.json * src/app/tsconfig.json -4:00:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/module.js' does not exist +12:00:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/module.js' does not exist -4:00:00 PM - Building project '/src/lib/tsconfig.json'... +12:00:00 AM - Building project '/src/lib/tsconfig.json'... -4:00:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist +12:00:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist -4:00:00 PM - Building project '/src/app/tsconfig.json'... +12:00:00 AM - Building project '/src/app/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-circular-import-project-with-emitDeclarationOnly-and-declarationMap.js b/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-circular-import-project-with-emitDeclarationOnly-and-declarationMap.js index f6c9acc7f49..d2d70c1b8be 100644 --- a/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-circular-import-project-with-emitDeclarationOnly-and-declarationMap.js +++ b/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-circular-import-project-with-emitDeclarationOnly-and-declarationMap.js @@ -1,11 +1,11 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/tsconfig.json -4:04:00 PM - Project 'src/tsconfig.json' is out of date because oldest output 'src/lib/a.d.ts' is older than newest input 'src/src/a.ts' +12:04:00 AM - Project 'src/tsconfig.json' is out of date because oldest output 'src/lib/a.d.ts' is older than newest input 'src/src/a.ts' -4:04:00 PM - Building project '/src/tsconfig.json'... +12:04:00 AM - Building project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-circular-import-project-with-emitDeclarationOnly.js b/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-circular-import-project-with-emitDeclarationOnly.js index 30db772ad18..6e6f2bb1805 100644 --- a/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-circular-import-project-with-emitDeclarationOnly.js +++ b/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-circular-import-project-with-emitDeclarationOnly.js @@ -1,11 +1,11 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/tsconfig.json -4:04:00 PM - Project 'src/tsconfig.json' is out of date because oldest output 'src/lib/a.d.ts' is older than newest input 'src/src/a.ts' +12:04:00 AM - Project 'src/tsconfig.json' is out of date because oldest output 'src/lib/a.d.ts' is older than newest input 'src/src/a.ts' -4:04:00 PM - Building project '/src/tsconfig.json'... +12:04:00 AM - Building project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js b/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js index 68d31fc370e..8bcb33bced7 100644 --- a/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js +++ b/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-changes/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js @@ -1,11 +1,11 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/tsconfig.json -4:04:00 PM - Project 'src/tsconfig.json' is out of date because oldest output 'src/lib/a.d.ts' is older than newest input 'src/src/a.ts' +12:04:00 AM - Project 'src/tsconfig.json' is out of date because oldest output 'src/lib/a.d.ts' is older than newest input 'src/src/a.ts' -4:04:00 PM - Building project '/src/tsconfig.json'... +12:04:00 AM - Building project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-doesnt-change/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js b/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-doesnt-change/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js index 74786c8fde9..bdfcb1e826f 100644 --- a/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-doesnt-change/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js +++ b/tests/baselines/reference/tsbuild/emitDeclarationOnly/incremental-declaration-doesnt-change/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js @@ -1,13 +1,13 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/tsconfig.json -4:08:00 PM - Project 'src/tsconfig.json' is out of date because oldest output 'src/lib/a.d.ts' is older than newest input 'src/src/a.ts' +12:08:00 AM - Project 'src/tsconfig.json' is out of date because oldest output 'src/lib/a.d.ts' is older than newest input 'src/src/a.ts' -4:08:00 PM - Building project '/src/tsconfig.json'... +12:08:00 AM - Building project '/src/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-circular-import-project-with-emitDeclarationOnly-and-declarationMap.js b/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-circular-import-project-with-emitDeclarationOnly-and-declarationMap.js index 516bc472994..38d8974e900 100644 --- a/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-circular-import-project-with-emitDeclarationOnly-and-declarationMap.js +++ b/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-circular-import-project-with-emitDeclarationOnly-and-declarationMap.js @@ -1,11 +1,11 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/tsconfig.json -4:01:00 PM - Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist +12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist -4:01:00 PM - Building project '/src/tsconfig.json'... +12:01:00 AM - Building project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-circular-import-project-with-emitDeclarationOnly.js b/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-circular-import-project-with-emitDeclarationOnly.js index 001ed2e2517..6f2bc263212 100644 --- a/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-circular-import-project-with-emitDeclarationOnly.js +++ b/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-circular-import-project-with-emitDeclarationOnly.js @@ -1,11 +1,11 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/tsconfig.json -4:01:00 PM - Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist +12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist -4:01:00 PM - Building project '/src/tsconfig.json'... +12:01:00 AM - Building project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js b/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js index f673e36cf40..aabaf41d53b 100644 --- a/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js +++ b/tests/baselines/reference/tsbuild/emitDeclarationOnly/initial-build/only-dts-output-in-non-circular-imports-project-with-emitDeclarationOnly.js @@ -1,11 +1,11 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/tsconfig.json -4:01:00 PM - Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist +12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist -4:01:00 PM - Building project '/src/tsconfig.json'... +12:01:00 AM - Building project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/inferred-type-from-transitive-module-with-isolatedModules.js b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/inferred-type-from-transitive-module-with-isolatedModules.js index bf4bee4eab4..a95215cf77f 100644 --- a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/inferred-type-from-transitive-module-with-isolatedModules.js +++ b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/inferred-type-from-transitive-module-with-isolatedModules.js @@ -1,13 +1,13 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/tsconfig.json -4:04:00 PM - Project 'src/tsconfig.json' is out of date because oldest output 'src/obj/bar.js' is older than newest input 'src/bar.ts' +12:04:00 AM - Project 'src/tsconfig.json' is out of date because oldest output 'src/obj/bar.js' is older than newest input 'src/bar.ts' -4:04:00 PM - Building project '/src/tsconfig.json'... +12:04:00 AM - Building project '/src/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/inferred-type-from-transitive-module.js b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/inferred-type-from-transitive-module.js index 391ee8b2b0a..5cd9097a200 100644 --- a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/inferred-type-from-transitive-module.js +++ b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/inferred-type-from-transitive-module.js @@ -1,13 +1,13 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/tsconfig.json -4:04:00 PM - Project 'src/tsconfig.json' is out of date because oldest output 'src/obj/bar.js' is older than newest input 'src/bar.ts' +12:04:00 AM - Project 'src/tsconfig.json' is out of date because oldest output 'src/obj/bar.js' is older than newest input 'src/bar.ts' -4:04:00 PM - Building project '/src/tsconfig.json'... +12:04:00 AM - Building project '/src/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/reports-errors-in-files-affected-by-change-in-signature-with-isolatedModules.js b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/reports-errors-in-files-affected-by-change-in-signature-with-isolatedModules.js index 000d32c145e..a00425b57a8 100644 --- a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/reports-errors-in-files-affected-by-change-in-signature-with-isolatedModules.js +++ b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/incremental-declaration-changes/reports-errors-in-files-affected-by-change-in-signature-with-isolatedModules.js @@ -1,11 +1,11 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/tsconfig.json -4:04:00 PM - Project 'src/tsconfig.json' is out of date because oldest output 'src/obj/bar.js' is older than newest input 'src/bar.ts' +12:04:00 AM - Project 'src/tsconfig.json' is out of date because oldest output 'src/obj/bar.js' is older than newest input 'src/bar.ts' -4:04:00 PM - Building project '/src/tsconfig.json'... +12:04:00 AM - Building project '/src/tsconfig.json'... src/lazyIndex.ts(4,5): error TS2554: Expected 0 arguments, but got 1. exitCode:: 1 diff --git a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/inferred-type-from-transitive-module-with-isolatedModules.js b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/inferred-type-from-transitive-module-with-isolatedModules.js index b743ce8ce0e..93a7e296495 100644 --- a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/inferred-type-from-transitive-module-with-isolatedModules.js +++ b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/inferred-type-from-transitive-module-with-isolatedModules.js @@ -1,11 +1,11 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/tsconfig.json -4:01:00 PM - Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist +12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist -4:01:00 PM - Building project '/src/tsconfig.json'... +12:01:00 AM - Building project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/inferred-type-from-transitive-module.js b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/inferred-type-from-transitive-module.js index c97faefa51b..45a284dc09c 100644 --- a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/inferred-type-from-transitive-module.js +++ b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/inferred-type-from-transitive-module.js @@ -1,11 +1,11 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/tsconfig.json -4:01:00 PM - Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist +12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist -4:01:00 PM - Building project '/src/tsconfig.json'... +12:01:00 AM - Building project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/reports-errors-in-files-affected-by-change-in-signature-with-isolatedModules.js b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/reports-errors-in-files-affected-by-change-in-signature-with-isolatedModules.js index e8e91111756..39ad2d40a31 100644 --- a/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/reports-errors-in-files-affected-by-change-in-signature-with-isolatedModules.js +++ b/tests/baselines/reference/tsbuild/inferredTypeFromTransitiveModule/initial-build/reports-errors-in-files-affected-by-change-in-signature-with-isolatedModules.js @@ -1,11 +1,11 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/tsconfig.json -4:01:00 PM - Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist +12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist -4:01:00 PM - Building project '/src/tsconfig.json'... +12:01:00 AM - Building project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/lateBoundSymbol/incremental-declaration-doesnt-change/interface-is-merged-and-contains-late-bound-member.js b/tests/baselines/reference/tsbuild/lateBoundSymbol/incremental-declaration-doesnt-change/interface-is-merged-and-contains-late-bound-member.js index 8b430f96e07..ffa834ba467 100644 --- a/tests/baselines/reference/tsbuild/lateBoundSymbol/incremental-declaration-doesnt-change/interface-is-merged-and-contains-late-bound-member.js +++ b/tests/baselines/reference/tsbuild/lateBoundSymbol/incremental-declaration-doesnt-change/interface-is-merged-and-contains-late-bound-member.js @@ -1,13 +1,13 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/tsconfig.json --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/tsconfig.json -4:04:00 PM - Project 'src/tsconfig.json' is out of date because oldest output 'src/src/hkt.js' is older than newest input 'src/src/main.ts' +12:04:00 AM - Project 'src/tsconfig.json' is out of date because oldest output 'src/src/hkt.js' is older than newest input 'src/src/main.ts' -4:04:00 PM - Building project '/src/tsconfig.json'... +12:04:00 AM - Building project '/src/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/lateBoundSymbol/initial-build/interface-is-merged-and-contains-late-bound-member.js b/tests/baselines/reference/tsbuild/lateBoundSymbol/initial-build/interface-is-merged-and-contains-late-bound-member.js index 1138bdc9f23..86d36097454 100644 --- a/tests/baselines/reference/tsbuild/lateBoundSymbol/initial-build/interface-is-merged-and-contains-late-bound-member.js +++ b/tests/baselines/reference/tsbuild/lateBoundSymbol/initial-build/interface-is-merged-and-contains-late-bound-member.js @@ -1,11 +1,11 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/tsconfig.json --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/tsconfig.json -4:01:00 PM - Project 'src/tsconfig.json' is out of date because output file 'src/src/hkt.js' does not exist +12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/src/hkt.js' does not exist -4:01:00 PM - Building project '/src/tsconfig.json'... +12:01:00 AM - Building project '/src/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/moduleSpecifiers/initial-build/synthesized-module-specifiers-resolve-correctly.js b/tests/baselines/reference/tsbuild/moduleSpecifiers/initial-build/synthesized-module-specifiers-resolve-correctly.js index 2701a84f6b4..fb5eae55d7c 100644 --- a/tests/baselines/reference/tsbuild/moduleSpecifiers/initial-build/synthesized-module-specifiers-resolve-correctly.js +++ b/tests/baselines/reference/tsbuild/moduleSpecifiers/initial-build/synthesized-module-specifiers-resolve-correctly.js @@ -1,23 +1,23 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc -b /src --verbose -4:00:00 PM - Projects in this build: +12:00:00 AM - Projects in this build: * src/solution/common/tsconfig.json * src/solution/sub-project/tsconfig.json * src/solution/sub-project-2/tsconfig.json * src/solution/tsconfig.json * src/tsconfig.json -4:00:00 PM - Project 'src/solution/common/tsconfig.json' is out of date because output file 'src/lib/solution/common/nominal.js' does not exist +12:00:00 AM - Project 'src/solution/common/tsconfig.json' is out of date because output file 'src/lib/solution/common/nominal.js' does not exist -4:00:00 PM - Building project '/src/solution/common/tsconfig.json'... +12:00:00 AM - Building project '/src/solution/common/tsconfig.json'... -4:00:00 PM - Project 'src/solution/sub-project/tsconfig.json' is out of date because output file 'src/lib/solution/sub-project/index.js' does not exist +12:00:00 AM - Project 'src/solution/sub-project/tsconfig.json' is out of date because output file 'src/lib/solution/sub-project/index.js' does not exist -4:00:00 PM - Building project '/src/solution/sub-project/tsconfig.json'... +12:00:00 AM - Building project '/src/solution/sub-project/tsconfig.json'... -4:00:00 PM - Project 'src/solution/sub-project-2/tsconfig.json' is out of date because output file 'src/lib/solution/sub-project-2/index.js' does not exist +12:00:00 AM - Project 'src/solution/sub-project-2/tsconfig.json' is out of date because output file 'src/lib/solution/sub-project-2/index.js' does not exist -4:00:00 PM - Building project '/src/solution/sub-project-2/tsconfig.json'... +12:00:00 AM - Building project '/src/solution/sub-project-2/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/baseline-sectioned-sourcemaps.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/baseline-sectioned-sourcemaps.js index 9367a222e95..136509b59b8 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/baseline-sectioned-sourcemaps.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/baseline-sectioned-sourcemaps.js @@ -1,19 +1,19 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' -4:04:00 PM - Building project '/src/third/tsconfig.json'... +12:04:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/emitHelpers-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/emitHelpers-in-all-projects.js index dde86a0a636..605e02ffcc8 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/emitHelpers-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/emitHelpers-in-all-projects.js @@ -1,19 +1,19 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' -4:04:00 PM - Building project '/src/third/tsconfig.json'... +12:04:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/multiple-prologues-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/multiple-prologues-in-all-projects.js index 8b6e2ffc4f1..a10f26edcc3 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/multiple-prologues-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/multiple-prologues-in-all-projects.js @@ -1,19 +1,19 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' -4:04:00 PM - Building project '/src/third/tsconfig.json'... +12:04:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/shebang-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/shebang-in-all-projects.js index b01cb4d4cce..874c818de64 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/shebang-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/shebang-in-all-projects.js @@ -1,19 +1,19 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' -4:04:00 PM - Building project '/src/third/tsconfig.json'... +12:04:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/strict-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/strict-in-all-projects.js index b267bf60ed3..9d7471bf95c 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/strict-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/strict-in-all-projects.js @@ -1,19 +1,19 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' -4:04:00 PM - Building project '/src/third/tsconfig.json'... +12:04:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal-when-one-two-three-are-prepended-in-order.js index 4f373f2715d..c218edfa8a9 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal-when-one-two-three-are-prepended-in-order.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is out of date because oldest output 'src/2/second-output.js' is older than newest input 'src/first' +12:04:00 AM - Project 'src/second/tsconfig.json' is out of date because oldest output 'src/2/second-output.js' is older than newest input 'src/first' -4:04:00 PM - Building project '/src/second/tsconfig.json'... +12:04:00 AM - Building project '/src/second/tsconfig.json'... -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/second' +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/second' -4:04:00 PM - Building project '/src/third/tsconfig.json'... +12:04:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal.js index 6e0f9dad311..397f586217e 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal.js @@ -1,19 +1,19 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' -4:04:00 PM - Building project '/src/third/tsconfig.json'... +12:04:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/triple-slash-refs-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/triple-slash-refs-in-all-projects.js index bfdd60afdbe..25cb88e8ddc 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/triple-slash-refs-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/triple-slash-refs-in-all-projects.js @@ -1,19 +1,19 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first' -4:04:00 PM - Building project '/src/third/tsconfig.json'... +12:04:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/baseline-sectioned-sourcemaps.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/baseline-sectioned-sourcemaps.js index 554b360c244..e0b14d9a65d 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/baseline-sectioned-sourcemaps.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/baseline-sectioned-sourcemaps.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/emitHelpers-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/emitHelpers-in-all-projects.js index 1a351abf785..cb0c5eb2bc6 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/emitHelpers-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/emitHelpers-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/emitHelpers-in-only-one-dependency-project.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/emitHelpers-in-only-one-dependency-project.js index 6c4af8b33e5..11497868243 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/emitHelpers-in-only-one-dependency-project.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/emitHelpers-in-only-one-dependency-project.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-emitHelpers-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-emitHelpers-in-all-projects.js index 8b110dd43d3..d8e06c669bc 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-emitHelpers-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-emitHelpers-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-emitHelpers-in-different-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-emitHelpers-in-different-projects.js index ca1beb99e0b..692390e1645 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-emitHelpers-in-different-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-emitHelpers-in-different-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-prologues-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-prologues-in-all-projects.js index f735bc5dc4c..30075f17e26 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-prologues-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-prologues-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-prologues-in-different-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-prologues-in-different-projects.js index b5914e9854d..ba51e272d7e 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-prologues-in-different-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/multiple-prologues-in-different-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/shebang-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/shebang-in-all-projects.js index fed09ab53ca..bbddaba06ea 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/shebang-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/shebang-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/shebang-in-only-one-dependency-project.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/shebang-in-only-one-dependency-project.js index 3d32544f7fb..8cbabe3c880 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/shebang-in-only-one-dependency-project.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/shebang-in-only-one-dependency-project.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/strict-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/strict-in-all-projects.js index f5066a128eb..a97bd2a2197 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/strict-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/strict-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/strict-in-one-dependency.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/strict-in-one-dependency.js index 6959522b4b3..9bdfad323e9 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/strict-in-one-dependency.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/strict-in-one-dependency.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js index 83ef9f7b6c8..9c369db811c 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js @@ -1,25 +1,25 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/second/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/second/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment.js index 728eede4865..48790653874 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js index 063cf4616a5..b7ccf17985a 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js @@ -1,25 +1,25 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/second/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/second/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled.js index 693db25d6cc..beb8d35124e 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-when-one-two-three-are-prepended-in-order.js index 262c5704c9e..e670e22aab6 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-when-one-two-three-are-prepended-in-order.js @@ -1,25 +1,25 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/second/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/second/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js index 5485cd7efe4..eb1f081ead5 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js @@ -1,25 +1,25 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/second/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/second/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled.js index bef29197431..51479fbc65d 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal.js index a159a645e0b..4a70c73124e 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/triple-slash-refs-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/triple-slash-refs-in-all-projects.js index 45662bd5aed..b11dc0218e2 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/triple-slash-refs-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/triple-slash-refs-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/triple-slash-refs-in-one-project.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/triple-slash-refs-in-one-project.js index f5b05d0504c..8d9f639e805 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/triple-slash-refs-in-one-project.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/triple-slash-refs-in-one-project.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/when-final-project-is-not-composite-but-uses-project-references.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/when-final-project-is-not-composite-but-uses-project-references.js index 42617018b17..66e8fed0677 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/when-final-project-is-not-composite-but-uses-project-references.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/when-final-project-is-not-composite-but-uses-project-references.js @@ -1,19 +1,19 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Building project '/src/third/tsconfig.json'... +12:04:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/when-source-files-are-empty-in-the-own-file.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/when-source-files-are-empty-in-the-own-file.js index fb897c92939..c41ea2edc69 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/when-source-files-are-empty-in-the-own-file.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/when-source-files-are-empty-in-the-own-file.js @@ -1,21 +1,21 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/third --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:04:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:04:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:04:00 PM - Building project '/src/first/tsconfig.json'... +12:04:00 AM - Building project '/src/first/tsconfig.json'... -4:04:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:04:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:04:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:04:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/emitHelpers-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/emitHelpers-in-all-projects.js index e5b38afe127..971adc119ac 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/emitHelpers-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/emitHelpers-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:12:00 PM - Projects in this build: +12:12:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:12:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:12:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:12:00 PM - Building project '/src/first/tsconfig.json'... +12:12:00 AM - Building project '/src/first/tsconfig.json'... -4:12:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:12:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:12:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:12:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:12:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:12:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:12:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:12:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/emitHelpers-in-only-one-dependency-project.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/emitHelpers-in-only-one-dependency-project.js index 374744c3500..4224fc07853 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/emitHelpers-in-only-one-dependency-project.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/emitHelpers-in-only-one-dependency-project.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-all-projects.js index 8e8099d954e..88807139890 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-different-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-different-projects.js index 007758d42c4..2c4350cc261 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-different-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-different-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-prologues-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-prologues-in-all-projects.js index 0ba862758a7..b7da2a1ff96 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-prologues-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-prologues-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:12:00 PM - Projects in this build: +12:12:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:12:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:12:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:12:00 PM - Building project '/src/first/tsconfig.json'... +12:12:00 AM - Building project '/src/first/tsconfig.json'... -4:12:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:12:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:12:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:12:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:12:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:12:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:12:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:12:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-prologues-in-different-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-prologues-in-different-projects.js index 63d64eb0a11..7b9dc11ca9b 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-prologues-in-different-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/multiple-prologues-in-different-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/strict-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/strict-in-all-projects.js index 76ac6adeb78..f762fa7ac29 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/strict-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/strict-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:12:00 PM - Projects in this build: +12:12:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:12:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:12:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:12:00 PM - Building project '/src/first/tsconfig.json'... +12:12:00 AM - Building project '/src/first/tsconfig.json'... -4:12:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:12:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:12:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:12:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:12:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:12:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:12:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:12:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/strict-in-one-dependency.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/strict-in-one-dependency.js index 41468039ec8..0e8a092a7d1 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/strict-in-one-dependency.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/strict-in-one-dependency.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js index 0c29565e910..c4c6dc7ab6d 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js @@ -1,25 +1,25 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/second/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/second/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment.js index 6062b244d25..44b2e3afe3f 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-when-one-two-three-are-prepended-in-order.js index ce3ce9947b2..a157ee39fc9 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-when-one-two-three-are-prepended-in-order.js @@ -1,25 +1,25 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:12:00 PM - Projects in this build: +12:12:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:12:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:12:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:12:00 PM - Building project '/src/first/tsconfig.json'... +12:12:00 AM - Building project '/src/first/tsconfig.json'... -4:12:00 PM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:12:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:12:00 PM - Updating output of project '/src/second/tsconfig.json'... +12:12:00 AM - Updating output of project '/src/second/tsconfig.json'... -4:12:00 PM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... +12:12:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... -4:12:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed +12:12:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed -4:12:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:12:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:12:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:12:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js index 7abd0fd5f78..fb2071dc256 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js @@ -1,25 +1,25 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/second/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/second/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'... -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled.js index 634fb0a5b02..a4a3c13a5f4 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:08:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:08:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:08:00 PM - Building project '/src/first/tsconfig.json'... +12:08:00 AM - Building project '/src/first/tsconfig.json'... -4:08:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:08:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:08:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:08:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal.js index 3d1c7b448b6..a048c6ecd75 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal.js @@ -1,21 +1,21 @@ //// [/lib/incremental-headers-change-without-dts-changesOutput.txt] /lib/tsc --b /src/third --verbose -4:12:00 PM - Projects in this build: +12:12:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:12:00 PM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' +12:12:00 AM - Project 'src/first/tsconfig.json' is out of date because oldest output 'src/first/bin/first-output.js' is older than newest input 'src/first/first_PART1.ts' -4:12:00 PM - Building project '/src/first/tsconfig.json'... +12:12:00 AM - Building project '/src/first/tsconfig.json'... -4:12:00 PM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' +12:12:00 AM - Project 'src/second/tsconfig.json' is up to date because newest input 'src/second/second_part1.ts' is older than oldest output 'src/2/second-output.js' -4:12:00 PM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed +12:12:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed -4:12:00 PM - Updating output of project '/src/third/tsconfig.json'... +12:12:00 AM - Updating output of project '/src/third/tsconfig.json'... -4:12:00 PM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... +12:12:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/baseline-sectioned-sourcemaps.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/baseline-sectioned-sourcemaps.js index 2f7ba873ad3..2b217d8a1d1 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/baseline-sectioned-sourcemaps.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/baseline-sectioned-sourcemaps.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/declarationMap-and-sourceMap-disabled.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/declarationMap-and-sourceMap-disabled.js index 675fda54149..41e8f94b4aa 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/declarationMap-and-sourceMap-disabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/declarationMap-and-sourceMap-disabled.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:00:00 PM - Projects in this build: +12:00:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:00:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:00:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:00:00 PM - Building project '/src/first/tsconfig.json'... +12:00:00 AM - Building project '/src/first/tsconfig.json'... -4:00:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:00:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:00:00 PM - Building project '/src/second/tsconfig.json'... +12:00:00 AM - Building project '/src/second/tsconfig.json'... -4:00:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:00:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:00:00 PM - Building project '/src/third/tsconfig.json'... +12:00:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/emitHelpers-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/emitHelpers-in-all-projects.js index 3130e072f76..7dbec0f66cf 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/emitHelpers-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/emitHelpers-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/emitHelpers-in-only-one-dependency-project.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/emitHelpers-in-only-one-dependency-project.js index 5e2363bdbe3..b946940addd 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/emitHelpers-in-only-one-dependency-project.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/emitHelpers-in-only-one-dependency-project.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-emitHelpers-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-emitHelpers-in-all-projects.js index da32ae34a23..242690d2885 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-emitHelpers-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-emitHelpers-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-emitHelpers-in-different-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-emitHelpers-in-different-projects.js index cda562a0911..93ba9fcc3e3 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-emitHelpers-in-different-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-emitHelpers-in-different-projects.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-prologues-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-prologues-in-all-projects.js index b77ccd7276f..21f8943ae6b 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-prologues-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-prologues-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-prologues-in-different-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-prologues-in-different-projects.js index 476c1c92004..ea725d85d49 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-prologues-in-different-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/multiple-prologues-in-different-projects.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/shebang-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/shebang-in-all-projects.js index a7dbc818b70..b8adefd8976 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/shebang-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/shebang-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/shebang-in-only-one-dependency-project.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/shebang-in-only-one-dependency-project.js index 42351781f92..bab82334961 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/shebang-in-only-one-dependency-project.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/shebang-in-only-one-dependency-project.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/strict-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/strict-in-all-projects.js index 515d0e260d8..1471bdb3090 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/strict-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/strict-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/strict-in-one-dependency.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/strict-in-one-dependency.js index 4c801cc2b1e..8a4cce33dfc 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/strict-in-one-dependency.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/strict-in-one-dependency.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-baseline-when-internal-is-inside-another-internal.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-baseline-when-internal-is-inside-another-internal.js index 295d79ddce8..5595b32ed57 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-baseline-when-internal-is-inside-another-internal.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-baseline-when-internal-is-inside-another-internal.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:00:00 PM - Projects in this build: +12:00:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:00:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:00:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:00:00 PM - Building project '/src/first/tsconfig.json'... +12:00:00 AM - Building project '/src/first/tsconfig.json'... -4:00:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:00:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:00:00 PM - Building project '/src/second/tsconfig.json'... +12:00:00 AM - Building project '/src/second/tsconfig.json'... -4:00:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:00:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:00:00 PM - Building project '/src/third/tsconfig.json'... +12:00:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js index 5a785fe0232..c341d9c5d22 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment.js index 6e60def2dc2..709634ade27 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js index 2fbfbc496bf..81653bf15bb 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled.js index 6832eef63fc..e86999f7bf4 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-few-members-of-enum-are-internal.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-few-members-of-enum-are-internal.js index 37b97a2e325..91cf996eddd 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-few-members-of-enum-are-internal.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-few-members-of-enum-are-internal.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:00:00 PM - Projects in this build: +12:00:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:00:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:00:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:00:00 PM - Building project '/src/first/tsconfig.json'... +12:00:00 AM - Building project '/src/first/tsconfig.json'... -4:00:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:00:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:00:00 PM - Building project '/src/second/tsconfig.json'... +12:00:00 AM - Building project '/src/second/tsconfig.json'... -4:00:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:00:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:00:00 PM - Building project '/src/third/tsconfig.json'... +12:00:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-one-two-three-are-prepended-in-order.js index edd66e3d3f6..a858a1e27d8 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-one-two-three-are-prepended-in-order.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js index 9cce635b198..fa4c05b80fe 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled.js index 836399723c6..d6818122891 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal.js index 6c3036fe151..0f0cf474ca7 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/triple-slash-refs-in-all-projects.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/triple-slash-refs-in-all-projects.js index d75f09700f3..c8efbd205e6 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/triple-slash-refs-in-all-projects.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/triple-slash-refs-in-all-projects.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/triple-slash-refs-in-one-project.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/triple-slash-refs-in-one-project.js index 79fbe880295..471309f35f0 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/triple-slash-refs-in-one-project.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/triple-slash-refs-in-one-project.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-is-not-composite-but-incremental.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-is-not-composite-but-incremental.js index dc62ade0d97..81bec95d4f6 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-is-not-composite-but-incremental.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-is-not-composite-but-incremental.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:00:00 PM - Projects in this build: +12:00:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:00:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:00:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:00:00 PM - Building project '/src/first/tsconfig.json'... +12:00:00 AM - Building project '/src/first/tsconfig.json'... -4:00:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:00:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:00:00 PM - Building project '/src/second/tsconfig.json'... +12:00:00 AM - Building project '/src/second/tsconfig.json'... -4:00:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:00:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:00:00 PM - Building project '/src/third/tsconfig.json'... +12:00:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-is-not-composite-but-uses-project-references.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-is-not-composite-but-uses-project-references.js index 655ea2d37bd..2e7b1f1663f 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-is-not-composite-but-uses-project-references.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-is-not-composite-but-uses-project-references.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-specifies-tsBuildInfoFile.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-specifies-tsBuildInfoFile.js index 89d143e06b4..b0131b6af56 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-specifies-tsBuildInfoFile.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-final-project-specifies-tsBuildInfoFile.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:00:00 PM - Projects in this build: +12:00:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:00:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:00:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:00:00 PM - Building project '/src/first/tsconfig.json'... +12:00:00 AM - Building project '/src/first/tsconfig.json'... -4:00:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:00:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:00:00 PM - Building project '/src/second/tsconfig.json'... +12:00:00 AM - Building project '/src/second/tsconfig.json'... -4:00:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:00:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:00:00 PM - Building project '/src/third/tsconfig.json'... +12:00:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-source-files-are-empty-in-the-own-file.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-source-files-are-empty-in-the-own-file.js index 2464f8287d2..deb7dbd86e6 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-source-files-are-empty-in-the-own-file.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/when-source-files-are-empty-in-the-own-file.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/third --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/first/tsconfig.json * src/second/tsconfig.json * src/third/tsconfig.json -4:01:00 PM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist +12:01:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.js' does not exist -4:01:00 PM - Building project '/src/first/tsconfig.json'... +12:01:00 AM - Building project '/src/first/tsconfig.json'... -4:01:00 PM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist +12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist -4:01:00 PM - Building project '/src/second/tsconfig.json'... +12:01:00 AM - Building project '/src/second/tsconfig.json'... -4:01:00 PM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist +12:01:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist -4:01:00 PM - Building project '/src/third/tsconfig.json'... +12:01:00 AM - Building project '/src/third/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/sample.js b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/sample.js index 12929fe77d3..94a962ebe02 100644 --- a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/sample.js +++ b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/sample.js @@ -1,23 +1,23 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/tests --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/core/tsconfig.json * src/logic/tsconfig.json * src/tests/tsconfig.json -4:04:00 PM - Project 'src/core/tsconfig.json' is out of date because oldest output 'src/core/anotherModule.js' is older than newest input 'src/core/index.ts' +12:04:00 AM - Project 'src/core/tsconfig.json' is out of date because oldest output 'src/core/anotherModule.js' is older than newest input 'src/core/index.ts' -4:04:00 PM - Building project '/src/core/tsconfig.json'... +12:04:00 AM - Building project '/src/core/tsconfig.json'... -4:04:00 PM - Updating unchanged output timestamps of project '/src/core/tsconfig.json'... +12:04:00 AM - Updating unchanged output timestamps of project '/src/core/tsconfig.json'... -4:04:00 PM - Project 'src/logic/tsconfig.json' is out of date because oldest output 'src/logic/index.js' is older than newest input 'src/core' +12:04:00 AM - Project 'src/logic/tsconfig.json' is out of date because oldest output 'src/logic/index.js' is older than newest input 'src/core' -4:04:00 PM - Building project '/src/logic/tsconfig.json'... +12:04:00 AM - Building project '/src/logic/tsconfig.json'... -4:04:00 PM - Project 'src/tests/tsconfig.json' is out of date because oldest output 'src/tests/index.js' is older than newest input 'src/core' +12:04:00 AM - Project 'src/tests/tsconfig.json' is out of date because oldest output 'src/tests/index.js' is older than newest input 'src/core' -4:04:00 PM - Building project '/src/tests/tsconfig.json'... +12:04:00 AM - Building project '/src/tests/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-declaration-option-changes.js b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-declaration-option-changes.js index d46e6bf0f86..2311e64ef2b 100644 --- a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-declaration-option-changes.js +++ b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-declaration-option-changes.js @@ -1,11 +1,11 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/core --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/core/tsconfig.json -4:04:00 PM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.d.ts' does not exist +12:04:00 AM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.d.ts' does not exist -4:04:00 PM - Building project '/src/core/tsconfig.json'... +12:04:00 AM - Building project '/src/core/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-esModuleInterop-option-changes.js b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-esModuleInterop-option-changes.js index 2bdd1aa6219..dd48841c8af 100644 --- a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-esModuleInterop-option-changes.js +++ b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-esModuleInterop-option-changes.js @@ -1,17 +1,17 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/tests --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/core/tsconfig.json * src/logic/tsconfig.json * src/tests/tsconfig.json -4:04:00 PM - Project 'src/core/tsconfig.json' is up to date because newest input 'src/core/anotherModule.ts' is older than oldest output 'src/core/anotherModule.js' +12:04:00 AM - Project 'src/core/tsconfig.json' is up to date because newest input 'src/core/anotherModule.ts' is older than oldest output 'src/core/anotherModule.js' -4:04:00 PM - Project 'src/logic/tsconfig.json' is up to date because newest input 'src/logic/index.ts' is older than oldest output 'src/logic/index.js' +12:04:00 AM - Project 'src/logic/tsconfig.json' is up to date because newest input 'src/logic/index.ts' is older than oldest output 'src/logic/index.js' -4:04:00 PM - Project 'src/tests/tsconfig.json' is out of date because oldest output 'src/tests/index.js' is older than newest input 'src/tests/tsconfig.json' +12:04:00 AM - Project 'src/tests/tsconfig.json' is out of date because oldest output 'src/tests/index.js' is older than newest input 'src/tests/tsconfig.json' -4:04:00 PM - Building project '/src/tests/tsconfig.json'... +12:04:00 AM - Building project '/src/tests/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-logic-config-changes-declaration-dir.js b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-logic-config-changes-declaration-dir.js index ba39ab2202f..da943e101e2 100644 --- a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-logic-config-changes-declaration-dir.js +++ b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-logic-config-changes-declaration-dir.js @@ -1,19 +1,19 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/tests --verbose -4:12:00 PM - Projects in this build: +12:12:00 AM - Projects in this build: * src/core/tsconfig.json * src/logic/tsconfig.json * src/tests/tsconfig.json -4:12:00 PM - Project 'src/core/tsconfig.json' is up to date because newest input 'src/core/anotherModule.ts' is older than oldest output 'src/core/anotherModule.js' +12:12:00 AM - Project 'src/core/tsconfig.json' is up to date because newest input 'src/core/anotherModule.ts' is older than oldest output 'src/core/anotherModule.js' -4:12:00 PM - Project 'src/logic/tsconfig.json' is out of date because output file 'src/logic/decls/index.d.ts' does not exist +12:12:00 AM - Project 'src/logic/tsconfig.json' is out of date because output file 'src/logic/decls/index.d.ts' does not exist -4:12:00 PM - Building project '/src/logic/tsconfig.json'... +12:12:00 AM - Building project '/src/logic/tsconfig.json'... -4:12:00 PM - Project 'src/tests/tsconfig.json' is out of date because oldest output 'src/tests/index.js' is older than newest input 'src/logic' +12:12:00 AM - Project 'src/tests/tsconfig.json' is out of date because oldest output 'src/tests/index.js' is older than newest input 'src/logic' -4:12:00 PM - Building project '/src/tests/tsconfig.json'... +12:12:00 AM - Building project '/src/tests/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-module-option-changes.js b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-module-option-changes.js index 5fa1cac3e7e..0a801843705 100644 --- a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-module-option-changes.js +++ b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-module-option-changes.js @@ -1,11 +1,11 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/core --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/core/tsconfig.json -4:04:00 PM - Project 'src/core/tsconfig.json' is out of date because oldest output 'src/core/anotherModule.js' is older than newest input 'src/core/tsconfig.json' +12:04:00 AM - Project 'src/core/tsconfig.json' is out of date because oldest output 'src/core/anotherModule.js' is older than newest input 'src/core/tsconfig.json' -4:04:00 PM - Building project '/src/core/tsconfig.json'... +12:04:00 AM - Building project '/src/core/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-target-option-changes.js b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-target-option-changes.js index b8e3134eb7f..bc3a7921993 100644 --- a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-target-option-changes.js +++ b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-changes/when-target-option-changes.js @@ -1,11 +1,11 @@ //// [/lib/incremental-declaration-changesOutput.txt] /lib/tsc --b /src/core --verbose -4:04:00 PM - Projects in this build: +12:04:00 AM - Projects in this build: * src/core/tsconfig.json -4:04:00 PM - Project 'src/core/tsconfig.json' is out of date because oldest output 'src/core/anotherModule.js' is older than newest input 'src/core/tsconfig.json' +12:04:00 AM - Project 'src/core/tsconfig.json' is out of date because oldest output 'src/core/anotherModule.js' is older than newest input 'src/core/tsconfig.json' -4:04:00 PM - Building project '/src/core/tsconfig.json'... +12:04:00 AM - Building project '/src/core/tsconfig.json'... TSFILE: /src/core/anotherModule.js TSFILE: /src/core/index.js diff --git a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-doesnt-change/sample.js b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-doesnt-change/sample.js index 09055358c26..a2d9e5a8564 100644 --- a/tests/baselines/reference/tsbuild/sample1/incremental-declaration-doesnt-change/sample.js +++ b/tests/baselines/reference/tsbuild/sample1/incremental-declaration-doesnt-change/sample.js @@ -1,23 +1,23 @@ //// [/lib/incremental-declaration-doesnt-changeOutput.txt] /lib/tsc --b /src/tests --verbose -4:08:00 PM - Projects in this build: +12:08:00 AM - Projects in this build: * src/core/tsconfig.json * src/logic/tsconfig.json * src/tests/tsconfig.json -4:08:00 PM - Project 'src/core/tsconfig.json' is out of date because oldest output 'src/core/anotherModule.js' is older than newest input 'src/core/index.ts' +12:08:00 AM - Project 'src/core/tsconfig.json' is out of date because oldest output 'src/core/anotherModule.js' is older than newest input 'src/core/index.ts' -4:08:00 PM - Building project '/src/core/tsconfig.json'... +12:08:00 AM - Building project '/src/core/tsconfig.json'... -4:08:00 PM - Updating unchanged output timestamps of project '/src/core/tsconfig.json'... +12:08:00 AM - Updating unchanged output timestamps of project '/src/core/tsconfig.json'... -4:08:00 PM - Project 'src/logic/tsconfig.json' is up to date with .d.ts files from its dependencies +12:08:00 AM - Project 'src/logic/tsconfig.json' is up to date with .d.ts files from its dependencies -4:08:00 PM - Updating output timestamps of project '/src/logic/tsconfig.json'... +12:08:00 AM - Updating output timestamps of project '/src/logic/tsconfig.json'... -4:08:00 PM - Project 'src/tests/tsconfig.json' is up to date with .d.ts files from its dependencies +12:08:00 AM - Project 'src/tests/tsconfig.json' is up to date with .d.ts files from its dependencies -4:08:00 PM - Updating output timestamps of project '/src/tests/tsconfig.json'... +12:08:00 AM - Updating output timestamps of project '/src/tests/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/sample1/initial-build/sample.js b/tests/baselines/reference/tsbuild/sample1/initial-build/sample.js index 6dce93cacfd..00228056483 100644 --- a/tests/baselines/reference/tsbuild/sample1/initial-build/sample.js +++ b/tests/baselines/reference/tsbuild/sample1/initial-build/sample.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/tests --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/core/tsconfig.json * src/logic/tsconfig.json * src/tests/tsconfig.json -4:01:00 PM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist +12:01:00 AM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist -4:01:00 PM - Building project '/src/core/tsconfig.json'... +12:01:00 AM - Building project '/src/core/tsconfig.json'... -4:01:00 PM - Project 'src/logic/tsconfig.json' is out of date because output file 'src/logic/index.js' does not exist +12:01:00 AM - Project 'src/logic/tsconfig.json' is out of date because output file 'src/logic/index.js' does not exist -4:01:00 PM - Building project '/src/logic/tsconfig.json'... +12:01:00 AM - Building project '/src/logic/tsconfig.json'... -4:01:00 PM - Project 'src/tests/tsconfig.json' is out of date because output file 'src/tests/index.js' does not exist +12:01:00 AM - Project 'src/tests/tsconfig.json' is out of date because output file 'src/tests/index.js' does not exist -4:01:00 PM - Building project '/src/tests/tsconfig.json'... +12:01:00 AM - Building project '/src/tests/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/sample1/initial-build/when-declaration-option-changes.js b/tests/baselines/reference/tsbuild/sample1/initial-build/when-declaration-option-changes.js index 5e1f8e0cab2..6fcba548d3b 100644 --- a/tests/baselines/reference/tsbuild/sample1/initial-build/when-declaration-option-changes.js +++ b/tests/baselines/reference/tsbuild/sample1/initial-build/when-declaration-option-changes.js @@ -1,11 +1,11 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/core --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/core/tsconfig.json -4:01:00 PM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist +12:01:00 AM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist -4:01:00 PM - Building project '/src/core/tsconfig.json'... +12:01:00 AM - Building project '/src/core/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/sample1/initial-build/when-esModuleInterop-option-changes.js b/tests/baselines/reference/tsbuild/sample1/initial-build/when-esModuleInterop-option-changes.js index 74b9a998ff1..0f1ea65c5e4 100644 --- a/tests/baselines/reference/tsbuild/sample1/initial-build/when-esModuleInterop-option-changes.js +++ b/tests/baselines/reference/tsbuild/sample1/initial-build/when-esModuleInterop-option-changes.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/tests --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/core/tsconfig.json * src/logic/tsconfig.json * src/tests/tsconfig.json -4:01:00 PM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist +12:01:00 AM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist -4:01:00 PM - Building project '/src/core/tsconfig.json'... +12:01:00 AM - Building project '/src/core/tsconfig.json'... -4:01:00 PM - Project 'src/logic/tsconfig.json' is out of date because output file 'src/logic/index.js' does not exist +12:01:00 AM - Project 'src/logic/tsconfig.json' is out of date because output file 'src/logic/index.js' does not exist -4:01:00 PM - Building project '/src/logic/tsconfig.json'... +12:01:00 AM - Building project '/src/logic/tsconfig.json'... -4:01:00 PM - Project 'src/tests/tsconfig.json' is out of date because output file 'src/tests/index.js' does not exist +12:01:00 AM - Project 'src/tests/tsconfig.json' is out of date because output file 'src/tests/index.js' does not exist -4:01:00 PM - Building project '/src/tests/tsconfig.json'... +12:01:00 AM - Building project '/src/tests/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/sample1/initial-build/when-logic-specifies-tsBuildInfoFile.js b/tests/baselines/reference/tsbuild/sample1/initial-build/when-logic-specifies-tsBuildInfoFile.js index 480116121fc..fe60d8093d4 100644 --- a/tests/baselines/reference/tsbuild/sample1/initial-build/when-logic-specifies-tsBuildInfoFile.js +++ b/tests/baselines/reference/tsbuild/sample1/initial-build/when-logic-specifies-tsBuildInfoFile.js @@ -1,21 +1,21 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/tests --verbose -4:00:00 PM - Projects in this build: +12:00:00 AM - Projects in this build: * src/core/tsconfig.json * src/logic/tsconfig.json * src/tests/tsconfig.json -4:00:00 PM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist +12:00:00 AM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist -4:00:00 PM - Building project '/src/core/tsconfig.json'... +12:00:00 AM - Building project '/src/core/tsconfig.json'... -4:00:00 PM - Project 'src/logic/tsconfig.json' is out of date because output file 'src/logic/index.js' does not exist +12:00:00 AM - Project 'src/logic/tsconfig.json' is out of date because output file 'src/logic/index.js' does not exist -4:00:00 PM - Building project '/src/logic/tsconfig.json'... +12:00:00 AM - Building project '/src/logic/tsconfig.json'... -4:00:00 PM - Project 'src/tests/tsconfig.json' is out of date because output file 'src/tests/index.js' does not exist +12:00:00 AM - Project 'src/tests/tsconfig.json' is out of date because output file 'src/tests/index.js' does not exist -4:00:00 PM - Building project '/src/tests/tsconfig.json'... +12:00:00 AM - Building project '/src/tests/tsconfig.json'... exitCode:: 0 readFiles:: { diff --git a/tests/baselines/reference/tsbuild/sample1/initial-build/when-module-option-changes.js b/tests/baselines/reference/tsbuild/sample1/initial-build/when-module-option-changes.js index 7d38706c85e..c890f0d5766 100644 --- a/tests/baselines/reference/tsbuild/sample1/initial-build/when-module-option-changes.js +++ b/tests/baselines/reference/tsbuild/sample1/initial-build/when-module-option-changes.js @@ -1,11 +1,11 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/core --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/core/tsconfig.json -4:01:00 PM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist +12:01:00 AM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist -4:01:00 PM - Building project '/src/core/tsconfig.json'... +12:01:00 AM - Building project '/src/core/tsconfig.json'... exitCode:: 0 diff --git a/tests/baselines/reference/tsbuild/sample1/initial-build/when-target-option-changes.js b/tests/baselines/reference/tsbuild/sample1/initial-build/when-target-option-changes.js index b9370cc5639..c615f77eb86 100644 --- a/tests/baselines/reference/tsbuild/sample1/initial-build/when-target-option-changes.js +++ b/tests/baselines/reference/tsbuild/sample1/initial-build/when-target-option-changes.js @@ -1,11 +1,11 @@ //// [/lib/initial-buildOutput.txt] /lib/tsc --b /src/core --verbose -4:01:00 PM - Projects in this build: +12:01:00 AM - Projects in this build: * src/core/tsconfig.json -4:01:00 PM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist +12:01:00 AM - Project 'src/core/tsconfig.json' is out of date because output file 'src/core/anotherModule.js' does not exist -4:01:00 PM - Building project '/src/core/tsconfig.json'... +12:01:00 AM - Building project '/src/core/tsconfig.json'... TSFILE: /src/core/anotherModule.js TSFILE: /src/core/index.js