Skip to content

Commit 5b39c00

Browse files
committed
feat: extra deployment params
1 parent 2feea83 commit 5b39c00

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.vscode/tasks.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@
5858
{
5959
"label": "Hardhat - Deploy to local network",
6060
"type": "shell",
61-
"command": "btp-scs hardhat deploy local -m ${input:deployment-module}",
61+
"command": "btp-scs hardhat deploy local -m ${input:deployment-module} ${input:extra-deployment}",
6262
"problemMatcher": []
6363
},
6464
{
6565
"label": "Hardhat - Deploy to platform network",
6666
"type": "shell",
67-
"command": "btp-scs hardhat deploy remote -m ${input:deployment-module}",
67+
"command": "btp-scs hardhat deploy remote -m ${input:deployment-module} ${input:extra-deployment}",
6868
"problemMatcher": []
6969
},
7070
{
@@ -80,6 +80,12 @@
8080
"description": "Hardhat Ignition Module",
8181
"type": "promptString",
8282
"default": "ignition/modules/Counter.ts"
83-
}
83+
},
84+
{
85+
"id": "extra-deployment",
86+
"description": "Extra commandline arguments, [--verify] [--reset]",
87+
"type": "promptString",
88+
"default": ""
89+
},
8490
]
85-
}
91+
}

0 commit comments

Comments
 (0)