Skip to content

Commit 3a0fb3a

Browse files
committed
Fixes microsoft#11482: Autodetecting gulpfile.ts tasks
1 parent 3c3395c commit 3a0fb3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/gulp/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class FolderDetector {
8383
}
8484

8585
public start(): void {
86-
let pattern = path.join(this._workspaceFolder.uri.fsPath, 'gulpfile{.babel.js,.js}');
86+
let pattern = path.join(this._workspaceFolder.uri.fsPath, 'gulpfile{.babel.js,.js,.ts}');
8787
this.fileWatcher = vscode.workspace.createFileSystemWatcher(pattern);
8888
this.fileWatcher.onDidChange(() => this.promise = undefined);
8989
this.fileWatcher.onDidCreate(() => this.promise = undefined);

0 commit comments

Comments
 (0)