29 lines
498 B
JSON
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"
|
||
|
}
|
||
|
]
|
||
|
}
|