VEL-Connect/velconnect-svelte-npm/.vscode/tasks.json

27 lines
425 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "npm run build",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Deploy to NPM",
"type": "shell",
"command": "npm publish --access publicf",
"dependsOn": ["Build"],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}