1
0
mirror of https://github.com/XFox111/my-website.git synced 2026-04-22 07:28:01 +03:00
Files
my-website/.vscode/tasks.json
T
2024-08-19 23:08:50 +00:00

61 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"label": "yarn: build",
"detail": "Build project"
},
{
"type": "npm",
"script": "install",
"group": "build",
"problemMatcher": [],
"label": "yarn: install",
"detail": "Restore dependencies"
},
{
"type": "npm",
"script": "dev",
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": [],
"label": "yarn: dev",
"detail": "Start development server"
},
{
"type": "npm",
"script": "lint",
"group": "test",
"problemMatcher": [],
"label": "yarn: lint",
"detail": "Run ESLint"
},
{
"type": "shell",
"command": "docker",
"args": [
"build",
"-t",
"my-website",
"./"
],
"options": {
"cwd": "${workspaceFolder}"
},
"group": "build",
"problemMatcher": [],
"label": "docker: build",
"detail": "Build a Docker image"
},
]
}