mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Merge branch 'baselining' into resolution
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
||||
+11
-2
@@ -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);
|
||||
|
||||
+6
-6
@@ -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
|
||||
|
||||
|
||||
+6
-6
@@ -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
|
||||
|
||||
|
||||
+6
-6
@@ -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
|
||||
|
||||
|
||||
+6
-6
@@ -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
|
||||
|
||||
|
||||
+6
-6
@@ -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
|
||||
|
||||
|
||||
+6
-6
@@ -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
|
||||
|
||||
|
||||
+6
-6
@@ -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
|
||||
|
||||
|
||||
+6
-6
@@ -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
|
||||
|
||||
|
||||
+5
-5
@@ -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
|
||||
|
||||
|
||||
+5
-5
@@ -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
|
||||
|
||||
|
||||
+5
-5
@@ -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
|
||||
|
||||
|
||||
+5
-5
@@ -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
|
||||
|
||||
|
||||
+5
-5
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
+5
-5
@@ -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
|
||||
|
||||
|
||||
+5
-5
@@ -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
|
||||
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
|
||||
+4
-4
@@ -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
|
||||
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
|
||||
+4
-4
@@ -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
|
||||
|
||||
|
||||
+4
-4
@@ -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
|
||||
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
|
||||
+4
-4
@@ -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
|
||||
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+6
-6
@@ -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:: {
|
||||
|
||||
+6
-6
@@ -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:: {
|
||||
|
||||
+6
-6
@@ -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:: {
|
||||
|
||||
+6
-6
@@ -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:: {
|
||||
|
||||
+6
-6
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+6
-6
@@ -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:: {
|
||||
|
||||
+6
-6
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+9
-9
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+9
-9
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+9
-9
@@ -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:: {
|
||||
|
||||
+9
-9
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+6
-6
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+9
-9
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+9
-9
@@ -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:: {
|
||||
|
||||
+9
-9
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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:: {
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
+7
-7
@@ -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
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user