bgenc.net/.vscode/tasks.json
Kaan Barmore-Genç 6c50ff1b84
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add blog post about extensions and shadow dom
2024-05-18 23:51:44 -05:00

29 lines
498 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"problemMatcher": [],
"label": "npm: dev",
"detail": "vite dev"
},
{
"type": "shell",
"command": "npm",
"args": ["run", "new-post", "${input:post-name}"],
"problemMatcher": [],
"label": "npm: new post",
"detail": "new post"
}
],
"inputs": [
{
"type": "promptString",
"id": "post-name",
"description": "Post name",
"default": "Incididunt aliqua adipisicing ipsum"
}
]
}