Skip to content

Commit

Permalink
feat: add extra deployment params
Browse files Browse the repository at this point in the history
  • Loading branch information
roderik authored Jun 23, 2024
1 parent 3b96ac6 commit ba61cd5
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/Diamond.ts"
}
},
{
"id": "extra-deployment",
"description": "Extra commandline arguments, [--verify] [--reset]",
"type": "promptString",
"default": ""
},
]
}
}

0 comments on commit ba61cd5

Please sign in to comment.