Skip to content

Commit f54ca39

Browse files
committed
added server bits to jake file
1 parent efa2b70 commit f54ca39

1 file changed

Lines changed: 15 additions & 4 deletions

File tree

Jakefile.js

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,16 @@ var cancellationTokenSources = [
123123
var serverSources = serverCoreSources.concat(servicesSources);
124124

125125
var languageServiceLibrarySources = [
126+
"protocol.d.ts",
127+
"utilities.ts",
128+
"scriptVersionCache.ts",
129+
"scriptInfo.ts",
130+
"lsHost.ts",
131+
"project.ts",
126132
"editorServices.ts",
127133
"protocol.d.ts",
128-
"session.ts"
134+
"session.ts",
135+
129136
].map(function (f) {
130137
return path.join(serverDirectory, f);
131138
}).concat(servicesSources);
@@ -173,10 +180,14 @@ var harnessSources = harnessCoreSources.concat([
173180
return path.join(unittestsDirectory, f);
174181
})).concat([
175182
"protocol.d.ts",
176-
"session.ts",
177-
"client.ts",
183+
"utilities.ts",
178184
"scriptVersionCache.ts",
179-
"editorServices.ts"
185+
"scriptInfo.ts",
186+
"lsHost.ts",
187+
"project.ts",
188+
"editorServices.ts",
189+
"protocol.d.ts",
190+
"session.ts",
180191
].map(function (f) {
181192
return path.join(serverDirectory, f);
182193
}));

0 commit comments

Comments
 (0)