From 4490ff70b8d8a23b3f7bc71c48a971d9cb9e3fe8 Mon Sep 17 00:00:00 2001 From: Ryan Cavanaugh Date: Tue, 23 Jun 2015 09:05:49 -0700 Subject: [PATCH] Add Jake task to update the Sublime plugin --- Jakefile.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jakefile.js b/Jakefile.js index afe0ffd3ce5..c5f30cf9f6c 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -690,3 +690,9 @@ task('tsc-instrumented', [loggedIOJsPath, instrumenterJsPath, tscFile], function }); ex.run(); }, { async: true }); + +desc("Updates the sublime plugin's tsserver"); +task("update-sublime", [serverFile], function() { + jake.cpR(serverFile, "../TypeScript-Sublime-Plugin/tsserver/"); + jake.cpR(serverFile + ".map", "../TypeScript-Sublime-Plugin/tsserver/"); +});