({ apiUrl }: { apiUrl?: string })
| 146 | // `SHLVL` used to overwrite prompts for scripted commands in production/dev |
| 147 | // environments see `scriptedCommand` property of `BaseCommand` |
| 148 | export const getEnvironmentVariables = ({ apiUrl }: { apiUrl?: string }) => ({ |
| 149 | NETLIFY_AUTH_TOKEN: 'fake-token', |
| 150 | NETLIFY_SITE_ID: 'site_id', |
| 151 | NETLIFY_API_URL: apiUrl, |
| 152 | }) |
| 153 | |
| 154 | /** |
| 155 | * Set the `isTTY` property of `process.stdin` to the given boolean value. |
no outgoing calls
no test coverage detected