We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e4d09c commit d4503dcCopy full SHA for d4503dc
apps/cli/src/base.ts
@@ -1,5 +1,4 @@
1
import { InvalidArgumentError } from "@commander-js/extra-typings";
2
-import chalk from "chalk";
3
import { execa } from "execa";
4
import fs from "fs";
5
import path from "path";
@@ -82,16 +81,6 @@ export const getAddressBook = async (): Promise<AddressBook> => {
82
81
return contracts;
83
};
84
85
-export const logPrompt = ({
86
- title,
87
- value,
88
-}: {
89
- title: string;
90
- value: string;
91
-}) => {
92
- console.log(`${chalk.green("?")} ${title} ${chalk.cyan(value)}`);
93
-};
94
-
95
const getServiceInfo = async (options: {
96
projectName: string;
97
service: string;
0 commit comments