From 121bead8d172671af6bfac7ddcdb798bd08a108e Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Tue, 14 Jun 2016 16:56:47 -0700 Subject: [PATCH] Fix run.js depending on the wrong local build target --- Gulpfile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.ts b/Gulpfile.ts index b0546206bda..fbce0c87e15 100644 --- a/Gulpfile.ts +++ b/Gulpfile.ts @@ -647,7 +647,7 @@ gulp.task("LKG", "Makes a new LKG out of the built js files", [], () => { // Task to build the tests infrastructure using the built compiler const run = path.join(builtLocalDirectory, "run.js"); -gulp.task(run, false, [builtLocalCompiler], () => { +gulp.task(run, false, [servicesFile], () => { const settings: tsc.Settings = getCompilerSettings({ outFile: run }, /*useBuiltCompiler*/ true);