Skip to content

Commit 89a3377

Browse files
committed
Rename update:list-embedded to update:embedded:list
1 parent 16969ce commit 89a3377

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

  • packages/eas-cli/src/commands/update/embedded

packages/eas-cli/src/commands/update/list-embedded.ts renamed to packages/eas-cli/src/commands/update/embedded/list.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
import { Platform } from '@expo/eas-build-job';
22
import { Flags } from '@oclif/core';
33

4-
import EasCommand from '../../commandUtils/EasCommand';
4+
import EasCommand from '../../../commandUtils/EasCommand';
55
import {
66
EasNonInteractiveAndJsonFlags,
77
resolveNonInteractiveAndJsonFlags,
8-
} from '../../commandUtils/flags';
9-
import { getLimitFlagWithCustomValues } from '../../commandUtils/pagination';
10-
import { AppPlatform } from '../../graphql/generated';
8+
} from '../../../commandUtils/flags';
9+
import { getLimitFlagWithCustomValues } from '../../../commandUtils/pagination';
10+
import { AppPlatform } from '../../../graphql/generated';
1111
import {
1212
EmbeddedUpdateFragment,
1313
EmbeddedUpdateQuery,
14-
} from '../../graphql/queries/EmbeddedUpdateQuery';
15-
import { toAppPlatform } from '../../graphql/types/AppPlatform';
16-
import Log from '../../log';
17-
import formatFields from '../../utils/formatFields';
18-
import { enableJsonOutput, printJsonOnlyOutput } from '../../utils/json';
14+
} from '../../../graphql/queries/EmbeddedUpdateQuery';
15+
import { toAppPlatform } from '../../../graphql/types/AppPlatform';
16+
import Log from '../../../log';
17+
import formatFields from '../../../utils/formatFields';
18+
import { enableJsonOutput, printJsonOnlyOutput } from '../../../utils/json';
1919

2020
const DEFAULT_LIMIT = 25;
2121
const MAX_LIMIT = 50;
2222

23-
export default class UpdateListEmbedded extends EasCommand {
23+
export default class UpdateEmbeddedList extends EasCommand {
2424
static override description = 'list embedded updates registered with EAS Update for this project';
2525

2626
static override flags = {
@@ -48,13 +48,13 @@ export default class UpdateListEmbedded extends EasCommand {
4848
};
4949

5050
async runAsync(): Promise<void> {
51-
const { flags } = await this.parse(UpdateListEmbedded);
51+
const { flags } = await this.parse(UpdateEmbeddedList);
5252
const { json: jsonFlag, nonInteractive } = resolveNonInteractiveAndJsonFlags(flags);
5353

5454
const {
5555
projectId,
5656
loggedIn: { graphqlClient },
57-
} = await this.getContextAsync(UpdateListEmbedded, { nonInteractive });
57+
} = await this.getContextAsync(UpdateEmbeddedList, { nonInteractive });
5858

5959
if (jsonFlag) {
6060
enableJsonOutput();

0 commit comments

Comments
 (0)