Skip to content

Commit

Permalink
feat: update ora version and remove unnecessary log
Browse files Browse the repository at this point in the history
  • Loading branch information
adnpark committed Mar 7, 2024
1 parent 3c1479d commit b3722b8
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"figlet": "^1.7.0",
"ora": "^8.0.0",
"ora": "^8.0.1",
"permissionless": "^0.0.20",
"tslib": "^2.6.2",
"viem": "^1.21.4"
Expand Down
3 changes: 0 additions & 3 deletions src/action/deployContracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ export const deployContracts = async (
result[1]
}`
)
spinner.start("Deployment is processing...")
return result
})
.catch((error) => {
Expand All @@ -135,15 +134,13 @@ export const deployContracts = async (
error.address
} on ${chalk.yellowBright(chain.name)}`
)
spinner.start("Deployment is processing...")
} else {
writeErrorLogToFile(chain.name, error)
spinner.fail(
`Deployment for ${chalk.redBright(
chain.name
)} failed! Check the error log at "./log" directory`
)
spinner.start("Deployment is processing...")
}
})
})
Expand Down

0 comments on commit b3722b8

Please sign in to comment.