mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Ensure that we have seenAffectedFiles map when files are added to pending emit because they were present in the old state (#37302)
* Make the systems for baselining default to pretty * Ensure that we have seenAffectedFiles map when files are added to pending emit because they were present in the old state This happens in build scenarios since semantic diagnostics are queried before emit and hence files are added to seenAffectedFiles pending emit Fixes #37269
This commit is contained in:
@@ -201,6 +201,7 @@ namespace ts {
|
||||
state.affectedFilesPendingEmit = oldState!.affectedFilesPendingEmit.slice();
|
||||
state.affectedFilesPendingEmitKind = cloneMapOrUndefined(oldState!.affectedFilesPendingEmitKind);
|
||||
state.affectedFilesPendingEmitIndex = oldState!.affectedFilesPendingEmitIndex;
|
||||
state.seenAffectedFiles = createMap();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -247,8 +248,8 @@ namespace ts {
|
||||
if (oldCompilerOptions && compilerOptionsAffectEmit(compilerOptions, oldCompilerOptions)) {
|
||||
// Add all files to affectedFilesPendingEmit since emit changed
|
||||
newProgram.getSourceFiles().forEach(f => addToAffectedFilesPendingEmit(state, f.resolvedPath, BuilderFileEmit.Full));
|
||||
Debug.assert(state.seenAffectedFiles === undefined);
|
||||
state.seenAffectedFiles = createMap<true>();
|
||||
Debug.assert(!state.seenAffectedFiles || !state.seenAffectedFiles.size);
|
||||
state.seenAffectedFiles = state.seenAffectedFiles || createMap<true>();
|
||||
}
|
||||
|
||||
state.emittedBuildInfo = !state.changedFilesSet.size && !state.affectedFilesPendingEmit;
|
||||
|
||||
@@ -32,6 +32,11 @@ namespace fakes {
|
||||
this._env = env;
|
||||
}
|
||||
|
||||
// Pretty output
|
||||
writeOutputIsTTY() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public write(message: string) {
|
||||
this.output.push(message);
|
||||
}
|
||||
|
||||
@@ -445,6 +445,11 @@ interface Array<T> { length: number; [n: number]: T; }`
|
||||
this.reloadFS(fileOrFolderorSymLinkList);
|
||||
}
|
||||
|
||||
// Output is pretty
|
||||
writeOutputIsTTY() {
|
||||
return true;
|
||||
}
|
||||
|
||||
getNewLine() {
|
||||
return this.newLine;
|
||||
}
|
||||
|
||||
@@ -1131,6 +1131,38 @@ export function someFn() { }`);
|
||||
}
|
||||
],
|
||||
});
|
||||
|
||||
verifyTscWatch({
|
||||
scenario,
|
||||
subScenario: "works when noUnusedParameters changes to false",
|
||||
commandLineArgs: ["-b", "-w"],
|
||||
sys: () => {
|
||||
const index: File = {
|
||||
path: `${projectRoot}/index.ts`,
|
||||
content: `const fn = (a: string, b: string) => b;`
|
||||
};
|
||||
const configFile: File = {
|
||||
path: `${projectRoot}/tsconfig.json`,
|
||||
content: JSON.stringify({
|
||||
compilerOptions: {
|
||||
noUnusedParameters: true
|
||||
}
|
||||
})
|
||||
};
|
||||
return createWatchedSystem([index, configFile, libFile], { currentDirectory: projectRoot });
|
||||
},
|
||||
changes: [
|
||||
sys => {
|
||||
sys.writeFile(`${projectRoot}/tsconfig.json`, JSON.stringify({
|
||||
compilerOptions: {
|
||||
noUnusedParameters: false
|
||||
}
|
||||
}));
|
||||
sys.runQueuedTimeoutCallbacks();
|
||||
return "Change tsconfig to set noUnusedParameters to false";
|
||||
},
|
||||
]
|
||||
});
|
||||
});
|
||||
|
||||
describe("unittests:: tsbuild:: watchMode:: with demo project", () => {
|
||||
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/app/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/app/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/app/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/app/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/app/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/app/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/app/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/app/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+6
-6
@@ -1,18 +1,18 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/app/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/app/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+5
-5
@@ -1,16 +1,16 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output of its dependency 'src/lib' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/app/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+5
-5
@@ -1,16 +1,16 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/app/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+5
-5
@@ -1,16 +1,16 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/app/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+5
-5
@@ -1,16 +1,16 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/app/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+5
-5
@@ -1,16 +1,16 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/app/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/app/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+5
-5
@@ -1,16 +1,16 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/app --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/lib/tsconfig.json' is out of date because output file 'src/lib/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:01:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/app/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+5
-5
@@ -1,16 +1,16 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc -b /src/app --verbose
|
||||
12:00:00 AM - Projects in this build:
|
||||
[[90m12:00:00 AM[0m] Projects in this build:
|
||||
* src/lib/tsconfig.json
|
||||
* src/app/tsconfig.json
|
||||
|
||||
12:00:00 AM - Project 'src/lib/tsconfig.json' is out of date because output file 'src/module.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/lib/tsconfig.json' is out of date because output file 'src/module.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/lib/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/lib/tsconfig.json'...
|
||||
|
||||
12:00:00 AM - Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/app/tsconfig.json' is out of date because output file 'src/app/module.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/app/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/app/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+8
-1
@@ -1,6 +1,13 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json
|
||||
src/tsconfig.json(8,9): error TS1005: ',' expected.
|
||||
[96msrc/tsconfig.json[0m:[93m8[0m:[93m9[0m - [91merror[0m[90m TS1005: [0m',' expected.
|
||||
|
||||
[7m8[0m "b.ts"
|
||||
[7m [0m [91m ~~~~~~[0m
|
||||
|
||||
|
||||
Found 1 error.
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped
|
||||
|
||||
|
||||
|
||||
+8
-1
@@ -1,6 +1,13 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json
|
||||
src/tsconfig.json(7,9): error TS1005: ',' expected.
|
||||
[96msrc/tsconfig.json[0m:[93m7[0m:[93m9[0m - [91merror[0m[90m TS1005: [0m',' expected.
|
||||
|
||||
[7m7[0m "b.ts"
|
||||
[7m [0m [91m ~~~~~~[0m
|
||||
|
||||
|
||||
Found 1 error.
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped
|
||||
|
||||
|
||||
|
||||
+8
-1
@@ -1,6 +1,13 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json
|
||||
src/tsconfig.json(7,9): error TS1005: ',' expected.
|
||||
[96msrc/tsconfig.json[0m:[93m7[0m:[93m9[0m - [91merror[0m[90m TS1005: [0m',' expected.
|
||||
|
||||
[7m7[0m "b.ts"
|
||||
[7m [0m [91m ~~~~~~[0m
|
||||
|
||||
|
||||
Found 1 error.
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped
|
||||
|
||||
|
||||
|
||||
+11
-4
@@ -1,9 +1,16 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json
|
||||
error TS5058: The specified path does not exist: '/src/foobar.json'.
|
||||
error TS18003: No inputs were found in config file '/src/tsconfig.first.json'. Specified 'include' paths were '["**/*"]' and 'exclude' paths were '[]'.
|
||||
error TS5058: The specified path does not exist: '/src/foobar.json'.
|
||||
error TS18003: No inputs were found in config file '/src/tsconfig.second.json'. Specified 'include' paths were '["**/*"]' and 'exclude' paths were '[]'.
|
||||
[91merror[0m[90m TS5058: [0mThe specified path does not exist: '/src/foobar.json'.
|
||||
|
||||
[91merror[0m[90m TS18003: [0mNo inputs were found in config file '/src/tsconfig.first.json'. Specified 'include' paths were '["**/*"]' and 'exclude' paths were '[]'.
|
||||
|
||||
[91merror[0m[90m TS5058: [0mThe specified path does not exist: '/src/foobar.json'.
|
||||
|
||||
[91merror[0m[90m TS18003: [0mNo inputs were found in config file '/src/tsconfig.second.json'. Specified 'include' paths were '["**/*"]' and 'exclude' paths were '[]'.
|
||||
|
||||
|
||||
Found 4 errors.
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped
|
||||
|
||||
|
||||
|
||||
+8
-1
@@ -1,6 +1,13 @@
|
||||
//// [/lib/no-change-runOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json
|
||||
src/tsconfig.json(7,9): error TS1005: ',' expected.
|
||||
[96msrc/tsconfig.json[0m:[93m7[0m:[93m9[0m - [91merror[0m[90m TS1005: [0m',' expected.
|
||||
|
||||
[7m7[0m "b.ts"
|
||||
[7m [0m [91m ~~~~~~[0m
|
||||
|
||||
|
||||
Found 1 error.
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped
|
||||
|
||||
|
||||
|
||||
+7
-7
@@ -1,23 +1,23 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/src/folder/tsconfig.json
|
||||
* src/src/folder2/tsconfig.json
|
||||
* src/src/tsconfig.json
|
||||
* src/tests/tsconfig.json
|
||||
* src/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/src/folder/tsconfig.json' is out of date because output file 'src/src/folder/index.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/src/folder/tsconfig.json' is out of date because output file 'src/src/folder/index.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/src/folder/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/src/folder/tsconfig.json'...
|
||||
|
||||
12:01:00 AM - Project 'src/src/folder2/tsconfig.json' is out of date because output file 'src/src/folder2/index.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/src/folder2/tsconfig.json' is out of date because output file 'src/src/folder2/index.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/src/folder2/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/src/folder2/tsconfig.json'...
|
||||
|
||||
12:01:00 AM - Project 'src/tests/tsconfig.json' is out of date because output file 'src/tests/index.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/tests/tsconfig.json' is out of date because output file 'src/tests/index.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/tests/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/tests/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+4
-4
@@ -1,17 +1,17 @@
|
||||
//// [/lib/no-change-runOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/src/folder/tsconfig.json
|
||||
* src/src/folder2/tsconfig.json
|
||||
* src/src/tsconfig.json
|
||||
* src/tests/tsconfig.json
|
||||
* src/tsconfig.json
|
||||
|
||||
12:04:00 AM - Project 'src/src/folder/tsconfig.json' is up to date because newest input 'src/src/folder/index.ts' is older than oldest output 'src/src/folder/index.js'
|
||||
[[90m12:04:00 AM[0m] Project 'src/src/folder/tsconfig.json' is up to date because newest input 'src/src/folder/index.ts' is older than oldest output 'src/src/folder/index.js'
|
||||
|
||||
12:04:00 AM - Project 'src/src/folder2/tsconfig.json' is up to date because newest input 'src/src/folder2/index.ts' is older than oldest output 'src/src/folder2/index.js'
|
||||
[[90m12:04:00 AM[0m] Project 'src/src/folder2/tsconfig.json' is up to date because newest input 'src/src/folder2/index.ts' is older than oldest output 'src/src/folder2/index.js'
|
||||
|
||||
12:04:00 AM - Project 'src/tests/tsconfig.json' is up to date because newest input 'src/tests/index.ts' is older than oldest output 'src/tests/index.js'
|
||||
[[90m12:04:00 AM[0m] Project 'src/tests/tsconfig.json' is up to date because newest input 'src/tests/index.ts' is older than oldest output 'src/tests/index.js'
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+45
-14
@@ -1,29 +1,60 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json --verbose
|
||||
12:00:00 AM - Projects in this build:
|
||||
[[90m12:00:00 AM[0m] Projects in this build:
|
||||
* src/core/tsconfig.json
|
||||
* src/animals/tsconfig.json
|
||||
* src/zoo/tsconfig.json
|
||||
* src/tsconfig.json
|
||||
|
||||
12:00:00 AM - Project 'src/core/tsconfig.json' is out of date because output file 'src/lib/core/utilities.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/core/tsconfig.json' is out of date because output file 'src/lib/core/utilities.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/core/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/core/tsconfig.json'...
|
||||
|
||||
src/animals/index.ts(1,20): error TS6059: File '/src/animals/animal.ts' is not under 'rootDir' '/src/core'. 'rootDir' is expected to contain all source files.
|
||||
src/animals/index.ts(1,20): error TS6307: File '/src/animals/animal.ts' is not listed within the file list of project '/src/core/tsconfig.json'. Projects must list all files or use an 'include' pattern.
|
||||
src/animals/index.ts(4,32): error TS6059: File '/src/animals/dog.ts' is not under 'rootDir' '/src/core'. 'rootDir' is expected to contain all source files.
|
||||
src/animals/index.ts(4,32): error TS6307: File '/src/animals/dog.ts' is not listed within the file list of project '/src/core/tsconfig.json'. Projects must list all files or use an 'include' pattern.
|
||||
src/core/utilities.ts(1,1): error TS6133: 'A' is declared but its value is never read.
|
||||
src/core/utilities.ts(1,20): error TS6059: File '/src/animals/index.ts' is not under 'rootDir' '/src/core'. 'rootDir' is expected to contain all source files.
|
||||
src/core/utilities.ts(1,20): error TS6307: File '/src/animals/index.ts' is not listed within the file list of project '/src/core/tsconfig.json'. Projects must list all files or use an 'include' pattern.
|
||||
12:00:00 AM - Project 'src/animals/tsconfig.json' can't be built because its dependency 'src/core' has errors
|
||||
[96msrc/animals/index.ts[0m:[93m1[0m:[93m20[0m - [91merror[0m[90m TS6059: [0mFile '/src/animals/animal.ts' is not under 'rootDir' '/src/core'. 'rootDir' is expected to contain all source files.
|
||||
|
||||
12:00:00 AM - Skipping build of project '/src/animals/tsconfig.json' because its dependency '/src/core' has errors
|
||||
[7m1[0m import Animal from './animal';
|
||||
[7m [0m [91m ~~~~~~~~~~[0m
|
||||
|
||||
12:00:00 AM - Project 'src/zoo/tsconfig.json' can't be built because its dependency 'src/animals' was not built
|
||||
[96msrc/animals/index.ts[0m:[93m1[0m:[93m20[0m - [91merror[0m[90m TS6307: [0mFile '/src/animals/animal.ts' is not listed within the file list of project '/src/core/tsconfig.json'. Projects must list all files or use an 'include' pattern.
|
||||
|
||||
12:00:00 AM - Skipping build of project '/src/zoo/tsconfig.json' because its dependency '/src/animals' was not built
|
||||
[7m1[0m import Animal from './animal';
|
||||
[7m [0m [91m ~~~~~~~~~~[0m
|
||||
|
||||
[96msrc/animals/index.ts[0m:[93m4[0m:[93m32[0m - [91merror[0m[90m TS6059: [0mFile '/src/animals/dog.ts' is not under 'rootDir' '/src/core'. 'rootDir' is expected to contain all source files.
|
||||
|
||||
[7m4[0m import { createDog, Dog } from './dog';
|
||||
[7m [0m [91m ~~~~~~~[0m
|
||||
|
||||
[96msrc/animals/index.ts[0m:[93m4[0m:[93m32[0m - [91merror[0m[90m TS6307: [0mFile '/src/animals/dog.ts' is not listed within the file list of project '/src/core/tsconfig.json'. Projects must list all files or use an 'include' pattern.
|
||||
|
||||
[7m4[0m import { createDog, Dog } from './dog';
|
||||
[7m [0m [91m ~~~~~~~[0m
|
||||
|
||||
[96msrc/core/utilities.ts[0m:[93m1[0m:[93m1[0m - [91merror[0m[90m TS6133: [0m'A' is declared but its value is never read.
|
||||
|
||||
[7m1[0m import * as A from '../animals';
|
||||
[7m [0m [91m~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
||||
|
||||
[96msrc/core/utilities.ts[0m:[93m1[0m:[93m20[0m - [91merror[0m[90m TS6059: [0mFile '/src/animals/index.ts' is not under 'rootDir' '/src/core'. 'rootDir' is expected to contain all source files.
|
||||
|
||||
[7m1[0m import * as A from '../animals';
|
||||
[7m [0m [91m ~~~~~~~~~~~~[0m
|
||||
|
||||
[96msrc/core/utilities.ts[0m:[93m1[0m:[93m20[0m - [91merror[0m[90m TS6307: [0mFile '/src/animals/index.ts' is not listed within the file list of project '/src/core/tsconfig.json'. Projects must list all files or use an 'include' pattern.
|
||||
|
||||
[7m1[0m import * as A from '../animals';
|
||||
[7m [0m [91m ~~~~~~~~~~~~[0m
|
||||
|
||||
[[90m12:00:00 AM[0m] Project 'src/animals/tsconfig.json' can't be built because its dependency 'src/core' has errors
|
||||
|
||||
[[90m12:00:00 AM[0m] Skipping build of project '/src/animals/tsconfig.json' because its dependency '/src/core' has errors
|
||||
|
||||
[[90m12:00:00 AM[0m] Project 'src/zoo/tsconfig.json' can't be built because its dependency 'src/animals' was not built
|
||||
|
||||
[[90m12:00:00 AM[0m] Skipping build of project '/src/zoo/tsconfig.json' because its dependency '/src/animals' was not built
|
||||
|
||||
|
||||
Found 7 errors.
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped
|
||||
|
||||
|
||||
+6
-2
@@ -1,15 +1,19 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json --verbose
|
||||
12:00:00 AM - Projects in this build:
|
||||
[[90m12:00:00 AM[0m] Projects in this build:
|
||||
* src/animals/tsconfig.json
|
||||
* src/zoo/tsconfig.json
|
||||
* src/core/tsconfig.json
|
||||
* src/tsconfig.json
|
||||
|
||||
error TS6202: Project references may not form a circular graph. Cycle detected: /src/tsconfig.json
|
||||
[91merror[0m[90m TS6202: [0mProject references may not form a circular graph. Cycle detected: /src/tsconfig.json
|
||||
/src/core/tsconfig.json
|
||||
/src/zoo/tsconfig.json
|
||||
/src/animals/tsconfig.json
|
||||
|
||||
|
||||
Found 1 error.
|
||||
|
||||
exitCode:: ExitStatus.ProjectReferenceCycle_OutputsSkupped
|
||||
|
||||
|
||||
|
||||
+7
-7
@@ -1,22 +1,22 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json --verbose
|
||||
12:00:00 AM - Projects in this build:
|
||||
[[90m12:00:00 AM[0m] Projects in this build:
|
||||
* src/core/tsconfig.json
|
||||
* src/animals/tsconfig.json
|
||||
* src/zoo/tsconfig.json
|
||||
* src/tsconfig.json
|
||||
|
||||
12:00:00 AM - Project 'src/core/tsconfig.json' is out of date because output file 'src/lib/core/utilities.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/core/tsconfig.json' is out of date because output file 'src/lib/core/utilities.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/core/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/core/tsconfig.json'...
|
||||
|
||||
12:00:00 AM - Project 'src/animals/tsconfig.json' is out of date because output file 'src/lib/animals/animal.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/animals/tsconfig.json' is out of date because output file 'src/lib/animals/animal.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/animals/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/animals/tsconfig.json'...
|
||||
|
||||
12:00:00 AM - Project 'src/zoo/tsconfig.json' is out of date because output file 'src/lib/zoo/zoo.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/zoo/tsconfig.json' is out of date because output file 'src/lib/zoo/zoo.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/zoo/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/zoo/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+4
-4
@@ -1,13 +1,13 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/tsconfig.json' is out of date because output file 'src/lib/a.d.ts' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+8
-1
@@ -1,6 +1,13 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/no-references
|
||||
src/no-references/tsconfig.json(3,14): error TS18002: The 'files' list in config file '/src/no-references/tsconfig.json' is empty.
|
||||
[96msrc/no-references/tsconfig.json[0m:[93m3[0m:[93m14[0m - [91merror[0m[90m TS18002: [0mThe 'files' list in config file '/src/no-references/tsconfig.json' is empty.
|
||||
|
||||
[7m3[0m "files": [],
|
||||
[7m [0m [91m ~~[0m
|
||||
|
||||
|
||||
Found 1 error.
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped
|
||||
|
||||
|
||||
|
||||
+5
-1
@@ -1,6 +1,10 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc -b bogus.json
|
||||
error TS6053: File '/bogus.json' not found.
|
||||
[91merror[0m[90m TS6053: [0mFile '/bogus.json' not found.
|
||||
|
||||
|
||||
Found 1 error.
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped
|
||||
|
||||
|
||||
|
||||
+4
-4
@@ -1,13 +1,13 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+4
-4
@@ -1,13 +1,13 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+11
-4
@@ -1,13 +1,20 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
[96msrc/lazyIndex.ts[0m:[93m4[0m:[93m5[0m - [91merror[0m[90m TS2554: [0mExpected 0 arguments, but got 1.
|
||||
|
||||
[7m4[0m bar("hello");
|
||||
[7m [0m [91m ~~~~~~~[0m
|
||||
|
||||
|
||||
Found 1 error.
|
||||
|
||||
src/lazyIndex.ts(4,5): error TS2554: Expected 0 arguments, but got 1.
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped
|
||||
|
||||
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/tsconfig.json' is out of date because output file 'src/obj/bar.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+4
-4
@@ -1,13 +1,13 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/tsconfig.json
|
||||
|
||||
12:01:00 AM - Project 'src/tsconfig.json' is out of date because output file 'src/src/hkt.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/tsconfig.json' is out of date because output file 'src/src/hkt.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,23 +1,23 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc -b /src --verbose
|
||||
12:00:00 AM - Projects in this build:
|
||||
[[90m12:00:00 AM[0m] 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
|
||||
|
||||
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
|
||||
[[90m12:00:00 AM[0m] 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 - Building project '/src/solution/common/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/solution/common/tsconfig.json'...
|
||||
|
||||
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
|
||||
[[90m12:00:00 AM[0m] 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 - Building project '/src/solution/sub-project/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/solution/sub-project/tsconfig.json'...
|
||||
|
||||
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
|
||||
[[90m12:00:00 AM[0m] 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 - Building project '/src/solution/sub-project-2/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/solution/sub-project-2/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+8
-1
@@ -1,6 +1,13 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/tsconfig.json
|
||||
src/src/main.ts(4,1): error TS1005: ',' expected.
|
||||
[96msrc/src/main.ts[0m:[93m4[0m:[93m1[0m - [91merror[0m[90m TS1005: [0m',' expected.
|
||||
|
||||
[7m4[0m ;
|
||||
[7m [0m [91m~[0m
|
||||
|
||||
|
||||
Found 1 error.
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsSkipped
|
||||
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:00:00 AM - Projects in this build:
|
||||
[[90m12:00:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
12:00:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/first_PART1.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/first/tsconfig.json' is out of date because output file 'src/first/first_PART1.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:00:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/second/second_part1.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output file 'src/second/second_part1.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/second/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/second/tsconfig.json'...
|
||||
|
||||
12:00:00 AM - Project 'src/third/tsconfig.json' is out of date because output file 'src/third/third_part1.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output file 'src/third/third_part1.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:00:00 AM - Projects in this build:
|
||||
[[90m12:00:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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
|
||||
[[90m12:00:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:00:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/second/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/second/tsconfig.json'...
|
||||
|
||||
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
|
||||
[[90m12:00:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:00:00 AM - Projects in this build:
|
||||
[[90m12:00:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
12:00:00 AM - Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.tsbuildinfo' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.tsbuildinfo' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:00: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'
|
||||
[[90m12:00:00 AM[0m] 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:00:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:00:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:00:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:00:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+6
-6
@@ -1,19 +1,19 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+6
-6
@@ -1,19 +1,19 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+6
-6
@@ -1,19 +1,19 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+6
-6
@@ -1,19 +1,19 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+6
-6
@@ -1,19 +1,19 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/second/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/second/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+6
-6
@@ -1,19 +1,19 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+6
-6
@@ -1,19 +1,19 @@
|
||||
//// [/lib/incremental-declaration-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because oldest output 'src/third/thirdjs/output/third-output.js' is older than newest input 'src/first'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+9
-9
@@ -1,25 +1,25 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/second/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+9
-9
@@ -1,25 +1,25 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/second/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+9
-9
@@ -1,25 +1,25 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/second/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+9
-9
@@ -1,25 +1,25 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/second/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+6
-6
@@ -1,19 +1,19 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-declaration-doesnt-changeOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:04:00 AM - Projects in this build:
|
||||
[[90m12:04:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:04:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:04:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:04:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:04:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:04:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:12:00 AM - Projects in this build:
|
||||
[[90m12:12:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:12:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:12:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:12:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:12:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:12:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:12:00 AM - Projects in this build:
|
||||
[[90m12:12:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:12:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:12:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:12:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:12:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:12:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:12:00 AM - Projects in this build:
|
||||
[[90m12:12:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:12:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:12:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:12:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:12:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:12:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+9
-9
@@ -1,25 +1,25 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/second/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+9
-9
@@ -1,25 +1,25 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:12:00 AM - Projects in this build:
|
||||
[[90m12:12:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:12:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:12:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:12:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:12:00 AM - Updating output of project '/src/second/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating output of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:12:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:12:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
[[90m12:12:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
|
||||
12:12:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:12:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+9
-9
@@ -1,25 +1,25 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/second/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/second/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/second' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:08:00 AM - Projects in this build:
|
||||
[[90m12:08:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:08:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:08:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:08:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:08:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:08:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/incremental-headers-change-without-dts-changesOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:12:00 AM - Projects in this build:
|
||||
[[90m12:12:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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'
|
||||
[[90m12:12:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
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'
|
||||
[[90m12:12:00 AM[0m] 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/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
[[90m12:12:00 AM[0m] Project 'src/third/tsconfig.json' is out of date because output of its dependency 'src/first' has changed
|
||||
|
||||
12:12:00 AM - Updating output of project '/src/third/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating output of project '/src/third/tsconfig.json'...
|
||||
|
||||
12:12:00 AM - Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
[[90m12:12:00 AM[0m] Updating unchanged output timestamps of project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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
|
||||
[[90m12:01:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/second/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/second/tsconfig.json'...
|
||||
|
||||
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
|
||||
[[90m12:01:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:00:00 AM - Projects in this build:
|
||||
[[90m12:00:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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
|
||||
[[90m12:00:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:00:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist
|
||||
[[90m12:00:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist
|
||||
|
||||
12:00:00 AM - Building project '/src/second/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/second/tsconfig.json'...
|
||||
|
||||
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
|
||||
[[90m12:00:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:00:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
|
||||
|
||||
+7
-7
@@ -1,21 +1,21 @@
|
||||
//// [/lib/initial-buildOutput.txt]
|
||||
/lib/tsc --b /src/third --verbose
|
||||
12:01:00 AM - Projects in this build:
|
||||
[[90m12:01:00 AM[0m] Projects in this build:
|
||||
* src/first/tsconfig.json
|
||||
* src/second/tsconfig.json
|
||||
* src/third/tsconfig.json
|
||||
|
||||
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
|
||||
[[90m12:01:00 AM[0m] 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 - Building project '/src/first/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/first/tsconfig.json'...
|
||||
|
||||
12:01:00 AM - Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist
|
||||
[[90m12:01:00 AM[0m] Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.js' does not exist
|
||||
|
||||
12:01:00 AM - Building project '/src/second/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/second/tsconfig.json'...
|
||||
|
||||
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
|
||||
[[90m12:01:00 AM[0m] 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 - Building project '/src/third/tsconfig.json'...
|
||||
[[90m12:01:00 AM[0m] Building project '/src/third/tsconfig.json'...
|
||||
|
||||
exitCode:: ExitStatus.Success
|
||||
readFiles:: {
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user