Replies: 1 comment
-
|
Workspace or folder specific tasks are configured from the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Here is a breakdown of the task.json file:
version: The version of the task.json file.tasks: An array of tasks.label: The label of the task.type: The type of the task. In this case, the type is shell, which means that the task will run a shell command.command: The shell command to run. In this case, the command is composer install.group: The group of the task. In this case, the group is build.{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format // created by eplus.dev "version": "2.0.0", "tasks": [ { "label": "backend", "type": "shell", "command":"composer i; php artisan ser", "group": "build", "options": { "cwd": "${workspaceFolder}/backend" }, "presentation": { "reveal": "always", "panel": "new", "group": "one", }, "runOptions": { "runOn": "folderOpen", } }, { "label": "queue", "type": "shell", "command": "php artisan queue:work", "group": "build", "options": { "cwd": "${workspaceFolder}/backend" }, "presentation": { "reveal": "always", "panel": "new", "group": "one", }, "runOptions": { "runOn": "folderOpen", } }, { "label": "customer", "type": "shell", "command": "npm i; npm run dev:host", "group": "build", "options": { "cwd": "${workspaceFolder}/customer" }, "presentation": { "reveal": "always", "panel": "new", "group": "one", }, "runOptions": { "runOn": "folderOpen", } }, { "label": "customer", "type": "shell", "command": "npm i; npm run dev:host", "group": "build", "options": { "cwd": "${workspaceFolder}/customer" }, "presentation": { "reveal": "always", "panel": "new", "group": "one", }, "runOptions": { "runOn": "folderOpen", } }, { "label": "iglocal", "type": "shell", "command": "npm i; npm run dev:host", "group": "build", "options": { "cwd": "${workspaceFolder}/iglocal" }, "presentation": { "reveal": "always", "panel": "new", "group": "one", }, "runOptions": { "runOn": "folderOpen", } }, { "label": "devtools", "type": "shell", "command": "node locale_pull.js", "group": "none", "options": { "cwd": "${workspaceFolder}/devtools" }, "presentation": { "reveal": "always", "panel": "new" }, } ] }Beta Was this translation helpful? Give feedback.
All reactions