Add Jake task to update the Sublime plugin

This commit is contained in:
Ryan Cavanaugh 2015-06-23 09:05:49 -07:00
Родитель 2cb0dfd99d
Коммит 4490ff70b8
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -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/");
});