|
1 | 1 | import which from 'which'; |
2 | | -import {log, LOG_PREFIX} from './logger'; |
3 | | -import {DEFAULT_EXEC_TIMEOUT, getXcrunBinary} from './helpers'; |
| 2 | +import {log, LOG_PREFIX} from './logger.js'; |
| 3 | +import {DEFAULT_EXEC_TIMEOUT, getXcrunBinary} from './helpers.js'; |
4 | 4 | import {exec as tpExec, SubProcess} from 'teen_process'; |
5 | | -import * as addmediaCommands from './subcommands/addmedia'; |
6 | | -import * as appinfoCommands from './subcommands/appinfo'; |
7 | | -import * as bootCommands from './subcommands/boot'; |
8 | | -import * as bootstatusCommands from './subcommands/bootstatus'; |
9 | | -import * as createCommands from './subcommands/create'; |
10 | | -import * as deleteCommands from './subcommands/delete'; |
11 | | -import * as eraseCommands from './subcommands/erase'; |
12 | | -import * as getappcontainerCommands from './subcommands/get_app_container'; |
13 | | -import * as installCommands from './subcommands/install'; |
14 | | -import * as ioCommands from './subcommands/io'; |
15 | | -import * as keychainCommands from './subcommands/keychain'; |
16 | | -import * as launchCommands from './subcommands/launch'; |
17 | | -import * as listCommands from './subcommands/list'; |
18 | | -import * as openurlCommands from './subcommands/openurl'; |
19 | | -import * as pbcopyCommands from './subcommands/pbcopy'; |
20 | | -import * as pbpasteCommands from './subcommands/pbpaste'; |
21 | | -import * as privacyCommands from './subcommands/privacy'; |
22 | | -import * as pushCommands from './subcommands/push'; |
23 | | -import * as envCommands from './subcommands/getenv'; |
24 | | -import * as shutdownCommands from './subcommands/shutdown'; |
25 | | -import * as spawnCommands from './subcommands/spawn'; |
26 | | -import * as terminateCommands from './subcommands/terminate'; |
27 | | -import * as uiCommands from './subcommands/ui'; |
28 | | -import * as uninstallCommands from './subcommands/uninstall'; |
29 | | -import * as locationCommands from './subcommands/location'; |
30 | | -import type {XCRun, ExecOpts, SimctlOpts, ExecResult} from './types'; |
| 5 | +import * as addmediaCommands from './subcommands/addmedia.js'; |
| 6 | +import * as appinfoCommands from './subcommands/appinfo.js'; |
| 7 | +import * as bootCommands from './subcommands/boot.js'; |
| 8 | +import * as bootstatusCommands from './subcommands/bootstatus.js'; |
| 9 | +import * as createCommands from './subcommands/create.js'; |
| 10 | +import * as deleteCommands from './subcommands/delete.js'; |
| 11 | +import * as eraseCommands from './subcommands/erase.js'; |
| 12 | +import * as getappcontainerCommands from './subcommands/get_app_container.js'; |
| 13 | +import * as installCommands from './subcommands/install.js'; |
| 14 | +import * as ioCommands from './subcommands/io.js'; |
| 15 | +import * as keychainCommands from './subcommands/keychain.js'; |
| 16 | +import * as launchCommands from './subcommands/launch.js'; |
| 17 | +import * as listCommands from './subcommands/list.js'; |
| 18 | +import * as openurlCommands from './subcommands/openurl.js'; |
| 19 | +import * as pbcopyCommands from './subcommands/pbcopy.js'; |
| 20 | +import * as pbpasteCommands from './subcommands/pbpaste.js'; |
| 21 | +import * as privacyCommands from './subcommands/privacy.js'; |
| 22 | +import * as pushCommands from './subcommands/push.js'; |
| 23 | +import * as envCommands from './subcommands/getenv.js'; |
| 24 | +import * as shutdownCommands from './subcommands/shutdown.js'; |
| 25 | +import * as spawnCommands from './subcommands/spawn.js'; |
| 26 | +import * as terminateCommands from './subcommands/terminate.js'; |
| 27 | +import * as uiCommands from './subcommands/ui.js'; |
| 28 | +import * as uninstallCommands from './subcommands/uninstall.js'; |
| 29 | +import * as locationCommands from './subcommands/location.js'; |
| 30 | +import type {XCRun, ExecOpts, SimctlOpts, ExecResult} from './types.js'; |
31 | 31 |
|
32 | 32 | const SIMCTL_ENV_PREFIX = 'SIMCTL_CHILD_'; |
33 | 33 |
|
|
0 commit comments