Skip to content

Commit 382ff17

Browse files
committed
Update emitting timestamps during testing
1 parent 220ee81 commit 382ff17

File tree

120 files changed

+739
-730
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+739
-730
lines changed

src/compiler/tsbuild.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ namespace ts {
316316
*/
317317
export function createBuilderStatusReporter(system: System, pretty?: boolean): DiagnosticReporter {
318318
return diagnostic => {
319-
let output = pretty ? `[${formatColorAndReset((system.now ? system.now() : new Date()).toLocaleTimeString(), ForegroundColorEscapeSequences.Grey)}] ` : `${(system.now ? system.now() : new Date()).toLocaleTimeString()} - `;
319+
let output = pretty ? `[${formatColorAndReset(getLocaleTimeString(system), ForegroundColorEscapeSequences.Grey)}] ` : `${getLocaleTimeString(system)} - `;
320320
output += `${flattenDiagnosticMessageText(diagnostic.messageText, system.newLine)}${system.newLine + system.newLine}`;
321321
system.write(output);
322322
};

src/compiler/watch.ts

+11-2
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,23 @@ namespace ts {
5454
: newLine;
5555
}
5656

57+
/**
58+
* Get locale specific time based on whether we are in test mode
59+
*/
60+
export function getLocaleTimeString(system: System) {
61+
return !system.now ?
62+
new Date().toLocaleTimeString() :
63+
system.now().toLocaleTimeString("en-US", { timeZone: "UTC" });
64+
}
65+
5766
/**
5867
* Create a function that reports watch status by writing to the system and handles the formating of the diagnostic
5968
*/
6069
export function createWatchStatusReporter(system: System, pretty?: boolean): WatchStatusReporter {
6170
return pretty ?
6271
(diagnostic, newLine, options) => {
6372
clearScreenIfNotWatchingForFileChanges(system, diagnostic, options);
64-
let output = `[${formatColorAndReset(new Date().toLocaleTimeString(), ForegroundColorEscapeSequences.Grey)}] `;
73+
let output = `[${formatColorAndReset(getLocaleTimeString(system), ForegroundColorEscapeSequences.Grey)}] `;
6574
output += `${flattenDiagnosticMessageText(diagnostic.messageText, system.newLine)}${newLine + newLine}`;
6675
system.write(output);
6776
} :
@@ -72,7 +81,7 @@ namespace ts {
7281
output += newLine;
7382
}
7483

75-
output += `${new Date().toLocaleTimeString()} - `;
84+
output += `${getLocaleTimeString(system)} - `;
7685
output += `${flattenDiagnosticMessageText(diagnostic.messageText, system.newLine)}${getPlainDiagnosticFollowingNewLines(diagnostic, newLine)}`;
7786

7887
system.write(output);

tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/modules-and-globals-mixed-in-amd.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:04:00 PM - Projects in this build:
3+
12:04:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
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'
7+
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'
88

9-
4:04:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:04:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
11+
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
1212

13-
4:04:00 PM - Updating output of project '/src/app/tsconfig.json'...
13+
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
1414

15-
4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
15+
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
1616

1717
exitCode:: 0
1818

tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/multiple-emitHelpers-in-all-projects.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:04:00 PM - Projects in this build:
3+
12:04:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
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'
7+
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'
88

9-
4:04:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:04:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
11+
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
1212

13-
4:04:00 PM - Updating output of project '/src/app/tsconfig.json'...
13+
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
1414

15-
4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
15+
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
1616

1717
exitCode:: 0
1818

tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/multiple-prologues-in-all-projects.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:04:00 PM - Projects in this build:
3+
12:04:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
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'
7+
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'
88

9-
4:04:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:04:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
11+
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
1212

13-
4:04:00 PM - Updating output of project '/src/app/tsconfig.json'...
13+
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
1414

15-
4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
15+
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
1616

1717
exitCode:: 0
1818

tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/shebang-in-all-projects.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:04:00 PM - Projects in this build:
3+
12:04:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
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'
7+
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'
88

9-
4:04:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:04:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
11+
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
1212

13-
4:04:00 PM - Updating output of project '/src/app/tsconfig.json'...
13+
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
1414

15-
4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
15+
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
1616

1717
exitCode:: 0
1818

tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/stripInternal.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:04:00 PM - Projects in this build:
3+
12:04:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
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'
7+
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'
88

9-
4:04:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:04:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
11+
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
1212

13-
4:04:00 PM - Updating output of project '/src/app/tsconfig.json'...
13+
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
1414

15-
4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
15+
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
1616

1717
exitCode:: 0
1818

tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/triple-slash-refs-in-all-projects.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:04:00 PM - Projects in this build:
3+
12:04:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
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'
7+
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'
88

9-
4:04:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:04:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:04:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
11+
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
1212

13-
4:04:00 PM - Updating output of project '/src/app/tsconfig.json'...
13+
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
1414

15-
4:04:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
15+
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
1616

1717
exitCode:: 0
1818

tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/multiple-emitHelpers-in-all-projects.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:08:00 PM - Projects in this build:
3+
12:08:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
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'
7+
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'
88

9-
4:08:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:08:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:08:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
11+
12:08:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
1212

13-
4:08:00 PM - Updating output of project '/src/app/tsconfig.json'...
13+
12:08:00 AM - Updating output of project '/src/app/tsconfig.json'...
1414

15-
4:08:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
15+
12:08:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
1616

1717
exitCode:: 0
1818

tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/multiple-prologues-in-all-projects.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:08:00 PM - Projects in this build:
3+
12:08:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
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'
7+
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'
88

9-
4:08:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:08:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:08:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
11+
12:08:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
1212

13-
4:08:00 PM - Updating output of project '/src/app/tsconfig.json'...
13+
12:08:00 AM - Updating output of project '/src/app/tsconfig.json'...
1414

15-
4:08:00 PM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
15+
12:08:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
1616

1717
exitCode:: 0
1818

tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/stripInternal.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:08:00 PM - Projects in this build:
3+
12:08:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
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'
7+
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'
88

9-
4:08:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:08:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:08:00 PM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
11+
12:08:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
1212

13-
4:08:00 PM - Updating output of project '/src/app/tsconfig.json'...
13+
12:08:00 AM - Updating output of project '/src/app/tsconfig.json'...
1414

1515
exitCode:: 0
1616

tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/modules-and-globals-mixed-in-amd.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//// [/lib/initial-buildOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:01:00 PM - Projects in this build:
3+
12:01:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
7+
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
88

9-
4:01:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
11+
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
1212

13-
4:01:00 PM - Building project '/src/app/tsconfig.json'...
13+
12:01:00 AM - Building project '/src/app/tsconfig.json'...
1414

1515
exitCode:: 0
1616

tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/multiple-emitHelpers-in-all-projects.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//// [/lib/initial-buildOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:01:00 PM - Projects in this build:
3+
12:01:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
7+
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
88

9-
4:01:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
11+
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
1212

13-
4:01:00 PM - Building project '/src/app/tsconfig.json'...
13+
12:01:00 AM - Building project '/src/app/tsconfig.json'...
1414

1515
exitCode:: 0
1616

tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/multiple-prologues-in-all-projects.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//// [/lib/initial-buildOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:01:00 PM - Projects in this build:
3+
12:01:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
7+
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
88

9-
4:01:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
11+
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
1212

13-
4:01:00 PM - Building project '/src/app/tsconfig.json'...
13+
12:01:00 AM - Building project '/src/app/tsconfig.json'...
1414

1515
exitCode:: 0
1616

tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/shebang-in-all-projects.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//// [/lib/initial-buildOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:01:00 PM - Projects in this build:
3+
12:01:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
7+
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
88

9-
4:01:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
11+
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
1212

13-
4:01:00 PM - Building project '/src/app/tsconfig.json'...
13+
12:01:00 AM - Building project '/src/app/tsconfig.json'...
1414

1515
exitCode:: 0
1616

tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/stripInternal.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//// [/lib/initial-buildOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:01:00 PM - Projects in this build:
3+
12:01:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
7+
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
88

9-
4:01:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
11+
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
1212

13-
4:01:00 PM - Building project '/src/app/tsconfig.json'...
13+
12:01:00 AM - Building project '/src/app/tsconfig.json'...
1414

1515
exitCode:: 0
1616

tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/triple-slash-refs-in-all-projects.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//// [/lib/initial-buildOutput.txt]
22
/lib/tsc --b /src/app --verbose
3-
4:01:00 PM - Projects in this build:
3+
12:01:00 AM - Projects in this build:
44
* src/lib/tsconfig.json
55
* src/app/tsconfig.json
66

7-
4:01:00 PM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
7+
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
88

9-
4:01:00 PM - Building project '/src/lib/tsconfig.json'...
9+
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
1010

11-
4:01:00 PM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
11+
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
1212

13-
4:01:00 PM - Building project '/src/app/tsconfig.json'...
13+
12:01:00 AM - Building project '/src/app/tsconfig.json'...
1414

1515
exitCode:: 0
1616

0 commit comments

Comments
 (0)