Skip to content

Commit 4b3ba57

Browse files
author
Andrew Hall
committed
Reorder
1 parent c6024b0 commit 4b3ba57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/createTagsTasks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ interface Options {
1818
dryRun: string;
1919
}
2020

21-
gulp.task('createTags', gulp.series('createTags:roslyn', 'createTags:razor', 'createTags:vscode-csharp'));
22-
2321
gulp.task('createTags:roslyn', async (): Promise<void> => {
2422
const options = minimist<Options>(process.argv.slice(2));
2523

@@ -62,6 +60,8 @@ gulp.task('createTags:vscode-csharp', async (): Promise<void> => {
6260
);
6361
});
6462

63+
gulp.task('createTags', gulp.series('createTags:roslyn', 'createTags:razor', 'createTags:vscode-csharp'));
64+
6565
async function createTagsAsync(
6666
options: Options,
6767
owner: string,

0 commit comments

Comments
 (0)