From 59338ed566ae75f07dfac8f1f08c4448a1416e3a Mon Sep 17 00:00:00 2001 From: Jason Freeman Date: Wed, 18 Mar 2015 17:23:40 -0700 Subject: [PATCH] Add libraryTargets to prereqs of instrumenter --- Jakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jakefile b/Jakefile index 41f417618d7..dd09085800c 100644 --- a/Jakefile +++ b/Jakefile @@ -720,7 +720,7 @@ file(loggedIOJsPath, [builtLocalDirectory, loggedIOpath], function() { var instrumenterPath = harnessDirectory + 'instrumenter.ts'; var instrumenterJsPath = builtLocalDirectory + 'instrumenter.js'; -compileFile(instrumenterJsPath, [instrumenterPath], [tscFile, instrumenterPath], [], /*useBuiltCompiler*/ true); +compileFile(instrumenterJsPath, [instrumenterPath], [tscFile, instrumenterPath].concat(libraryTargets), [], /*useBuiltCompiler*/ true); desc("Builds an instrumented tsc.js"); task('tsc-instrumented', [loggedIOJsPath, instrumenterJsPath, tscFile], function() {