We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b388e7 commit c0e6af3Copy full SHA for c0e6af3
gulpfile.js
@@ -8,14 +8,14 @@
8
const del = require('del');
9
const gulp = require('gulp');
10
const tslint = require('gulp-tslint');
11
-const omnisharpInstall = require('./out/omnisharpInstall');
+const omnisharpDownload = require('./out/omnisharpDownload');
12
13
gulp.task('omnisharp:clean', () => {
14
return del('.omnisharp');
15
});
16
17
gulp.task('omnisharp:fetch', ['omnisharp:clean'], () => {
18
- return omnisharpInstall.downloadOmnisharp();
+ return omnisharpDownload.downloadOmnisharp();
19
20
21
const allTypeScript = [
src/omnisharpInstall.ts renamed to src/omnisharpDownload.ts
@@ -117,4 +117,4 @@ export function downloadOmnisharp(): Promise<boolean> {
117
118
119
120
-}
+}
0 commit comments