(message: string)
| 6 | const ENVIRONMENTS = ["stage", "prod", "test"] |
| 7 | |
| 8 | const log = (message: string) => console.log(chalk.green(message)) |
| 9 | |
| 10 | const getEnvInfo = () => { |
| 11 | // Gets the environment from the command line arguments if set, otherwise defaults to dev |
no outgoing calls
no test coverage detected