-
Notifications
You must be signed in to change notification settings - Fork 37.6k
Closed
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugfile-explorerExplorer widget issuesExplorer widget issuesimportantIssue identified as high-priorityIssue identified as high-priorityverifiedVerification succeededVerification succeeded
Milestone
Description
- VSCode Version: 1.8.1
- OS Version: Windows 7 (64 bit)
Steps to Reproduce:
- Ran Babel with new files in the source folder with output of new files to the output folder
- Used the vscode explorer button to refresh, but did not see any new files in the output
- I can the files with the windows explorer
- If I shut down VSCODE and restart, I see the files.
File names are Counter.js, Counter.js.map
Here is the task that I am running to run Babel in watch mode:
{
"version": "0.1.0",
"command": "${workspaceRoot}/node_modules/.bin/babel.cmd",
"isShellCommand": true,
"tasks": [
{
"args": ["jsx-in", "--out-dir", "jsx", "-w", "--source-maps"],
"taskName": "watch",
"suppressTaskName": true,
"isBuildCommand": true, // make this the F1 > Task: Run Build Task gesture
"isWatching": true // tell VS Code not wait for this task to finish
}
]
}
I don't know if this is related: #7463
Metadata
Metadata
Assignees
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugfile-explorerExplorer widget issuesExplorer widget issuesimportantIssue identified as high-priorityIssue identified as high-priorityverifiedVerification succeededVerification succeeded