Commit 91abe901 authored by Grant's avatar Grant
Browse files

dev: add tasks

parent e7da00e5
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -17,5 +17,7 @@
  "yaml.schemas": {
    "https://gitlab.com/gitlab-org/gitlab-foss/-/raw/master/app/assets/javascripts/editor/schema/ci.json": "/.gitlab/ci/**/*.yml"
  },
  "editor.tabSize": 2
  "editor.tabSize": 2,
  "typescript.tsc.autoDetect": "off",
  "npm.autoDetect": "off"
}

.vscode/tasks.json

0 → 100644
+39 −0
Original line number Diff line number Diff line
{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "Start Dev",
      "group": "build",
      "dependsOn": ["dev: start server", "dev: start client"]
    },
    {
      "label": "dev: start server",
      "command": "yarn",
      "args": ["run", "dev:server"],
      "presentation": {
        "echo": true,
        "reveal": "always",
        "focus": false,
        "panel": "shared",
        "showReuseMessage": true,
        "clear": false,
      },
    },
    {
      "label": "dev: start client",
      "command": "yarn",
      "args": ["run", "dev:client"],
      "presentation": {
        "echo": true,
        "reveal": "always",
        "focus": false,
        "panel": "shared",
        "showReuseMessage": true,
        "clear": false,
      },
    },
    
  ]
}
 No newline at end of file