From f54ca3929a02f9ec5059a96d4ec5509bb40637b8 Mon Sep 17 00:00:00 2001 From: Vladimir Matveev Date: Fri, 24 Jun 2016 17:15:36 -0700 Subject: [PATCH] added server bits to jake file --- Jakefile.js | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/Jakefile.js b/Jakefile.js index 933c58c7a39..b7bf34a5f3d 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -123,9 +123,16 @@ var cancellationTokenSources = [ var serverSources = serverCoreSources.concat(servicesSources); var languageServiceLibrarySources = [ + "protocol.d.ts", + "utilities.ts", + "scriptVersionCache.ts", + "scriptInfo.ts", + "lsHost.ts", + "project.ts", "editorServices.ts", "protocol.d.ts", - "session.ts" + "session.ts", + ].map(function (f) { return path.join(serverDirectory, f); }).concat(servicesSources); @@ -173,10 +180,14 @@ var harnessSources = harnessCoreSources.concat([ return path.join(unittestsDirectory, f); })).concat([ "protocol.d.ts", - "session.ts", - "client.ts", + "utilities.ts", "scriptVersionCache.ts", - "editorServices.ts" + "scriptInfo.ts", + "lsHost.ts", + "project.ts", + "editorServices.ts", + "protocol.d.ts", + "session.ts", ].map(function (f) { return path.join(serverDirectory, f); }));