{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "rename yarn workspace packages",
      "type": "shell",
      "command": "node ./scripts/rename-workspace-packages --file ${file}",
      "presentation": {
        "echo": true,
        "reveal": "silent",
        "focus": false,
        "panel": "shared",
        "showReuseMessage": true,
        "clear": false
      },
      "problemMatcher": []
    },
    {
      "label": "decaffeinate-bulk file",
      "type": "shell",
      "command": "yarn decaffeinate-bulk convert --file ${file}",
      "problemMatcher": []
    },
    {
      "label": "decaffeinate-bulk multiple files",
      "type": "shell",
      "command": "yarn decaffeinate-bulk convert --file ${file} ${file}",
      "problemMatcher": []
    },
    {
      "label": "decaffeinate-bulk dir",
      "type": "shell",
      "command": "yarn decaffeinate-bulk --dir ${fileDirname} convert",
      "problemMatcher": []
    }
  ]
}
