From 89788f818e7c9d28f15d60ec2b389f657f323705 Mon Sep 17 00:00:00 2001 From: Andy Hanson Date: Tue, 26 Jul 2016 11:46:08 -0700 Subject: [PATCH] Add servicesSources to the list of prerequisites for running tests --- Jakefile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jakefile.js b/Jakefile.js index 3ccca83333314..c789c855a9f5c 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -645,7 +645,7 @@ var run = path.join(builtLocalDirectory, "run.js"); compileFile( /*outFile*/ run, /*source*/ harnessSources, - /*prereqs*/ [builtLocalDirectory, tscFile].concat(libraryTargets).concat(harnessSources), + /*prereqs*/ [builtLocalDirectory, tscFile].concat(libraryTargets).concat(servicesSources).concat(harnessSources), /*prefixes*/ [], /*useBuiltCompiler:*/ true, /*opts*/ { inlineSourceMap: true, types: ["node", "mocha", "chai"] });