Skip to content

Commit

Permalink
fix(pg): change hardhat node task param from silent to hide
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-goldman committed May 19, 2023
1 parent d50bca5 commit 8fe018e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/slimy-humans-sniff.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@chugsplash/plugins': patch
---

Change Hardhat `node` task param from 'silent' to 'hide' due to conflict with existing task
6 changes: 3 additions & 3 deletions packages/plugins/src/hardhat/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -532,21 +532,21 @@ task(TASK_NODE)
'disableChugsplash',
"Completely disable all of ChugSplash's activity."
)
.addFlag('silent', "Hide all of ChugSplash's logs")
.addFlag('hide', "Hide all of ChugSplash's logs")
.addFlag('noCompile', "Don't compile when running this task")
.setAction(
async (
args: {
deployAll: boolean
disableChugsplash: boolean
silent: boolean
hide: boolean
noCompile: boolean
confirm: boolean
},
hre: HardhatRuntimeEnvironment,
runSuper
) => {
const { deployAll, disableChugsplash, silent, noCompile } = args
const { deployAll, disableChugsplash, hide: silent, noCompile } = args

if (!disableChugsplash) {
const spinner = ora({ isSilent: silent })
Expand Down

0 comments on commit 8fe018e

Please sign in to comment.