Skip to content

Commit

Permalink
feat: extra deployment params
Browse files Browse the repository at this point in the history
  • Loading branch information
roderik committed Jun 23, 2024
1 parent 2feea83 commit 5b39c00
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@
{
"label": "Hardhat - Deploy to local network",
"type": "shell",
"command": "btp-scs hardhat deploy local -m ${input:deployment-module}",
"command": "btp-scs hardhat deploy local -m ${input:deployment-module} ${input:extra-deployment}",
"problemMatcher": []
},
{
"label": "Hardhat - Deploy to platform network",
"type": "shell",
"command": "btp-scs hardhat deploy remote -m ${input:deployment-module}",
"command": "btp-scs hardhat deploy remote -m ${input:deployment-module} ${input:extra-deployment}",
"problemMatcher": []
},
{
Expand All @@ -80,6 +80,12 @@
"description": "Hardhat Ignition Module",
"type": "promptString",
"default": "ignition/modules/Counter.ts"
}
},
{
"id": "extra-deployment",
"description": "Extra commandline arguments, [--verify] [--reset]",
"type": "promptString",
"default": ""
},
]
}
}

0 comments on commit 5b39c00

Please sign in to comment.