Files
TokenizeRWATemplate/projects/TokenizeRWATemplate-contracts/.vscode/tasks.json
Raghav d62f2fd1ca
Some checks failed
Release / Run TokenizeRWATemplate-contracts release (push) Has been cancelled
Release / Run TokenizeRWATemplate-frontend release (push) Has been cancelled
Update project templates and workspace configuration files
Co-Authored-By: Oz <oz-agent@warp.dev>
2026-04-16 10:38:17 +05:30

70 lines
1.6 KiB
JSON
Executable File

{
"version": "2.0.0",
"tasks": [
{
"label": "Build contracts",
"type": "npm",
"script": "build",
"path": "${workspaceFolder}",
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Build contracts (+ LocalNet)",
"type": "npm",
"script": "build",
"path": "${workspaceFolder}",
"options": {
"cwd": "${workspaceFolder}"
},
"dependsOn": "Start AlgoKit LocalNet",
"problemMatcher": []
},
{
"label": "Start AlgoKit LocalNet",
"command": "algokit",
"args": ["localnet", "start"],
"type": "shell",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "Stop AlgoKit LocalNet",
"command": "algokit",
"args": ["localnet", "stop"],
"type": "shell",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "Reset AlgoKit LocalNet",
"command": "algokit",
"args": ["localnet", "reset"],
"type": "shell",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "Analyze TEAL contracts with AlgoKit Tealer integration",
"command": "algokit",
"args": ["task", "analyze", "${workspaceFolder}/.algokit", "--recursive", "--force"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
}
]
}