Skip to content

Commit 630c3ab

Browse files
committed
Rename update:view-embedded to update:embedded:view
1 parent cc1142e commit 630c3ab

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

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

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import { Args, Errors } from '@oclif/core';
22

3-
import EasCommand from '../../commandUtils/EasCommand';
4-
import { EasJsonOnlyFlag } from '../../commandUtils/flags';
3+
import EasCommand from '../../../commandUtils/EasCommand';
4+
import { EasJsonOnlyFlag } from '../../../commandUtils/flags';
55
import {
66
EmbeddedUpdateFragment,
77
EmbeddedUpdateQuery,
88
isEmbeddedUpdateNotFoundError,
9-
} from '../../graphql/queries/EmbeddedUpdateQuery';
10-
import Log from '../../log';
11-
import formatFields from '../../utils/formatFields';
12-
import { enableJsonOutput, printJsonOnlyOutput } from '../../utils/json';
9+
} from '../../../graphql/queries/EmbeddedUpdateQuery';
10+
import Log from '../../../log';
11+
import formatFields from '../../../utils/formatFields';
12+
import { enableJsonOutput, printJsonOnlyOutput } from '../../../utils/json';
1313

14-
export default class UpdateViewEmbedded extends EasCommand {
14+
export default class UpdateEmbeddedView extends EasCommand {
1515
static override description = 'view details of an embedded update registered with EAS Update';
1616

1717
static override args = {
@@ -34,12 +34,12 @@ export default class UpdateViewEmbedded extends EasCommand {
3434
const {
3535
args: { id: embeddedUpdateId },
3636
flags: { json: jsonFlag },
37-
} = await this.parse(UpdateViewEmbedded);
37+
} = await this.parse(UpdateEmbeddedView);
3838

3939
const {
4040
projectId,
4141
loggedIn: { graphqlClient },
42-
} = await this.getContextAsync(UpdateViewEmbedded, { nonInteractive: true });
42+
} = await this.getContextAsync(UpdateEmbeddedView, { nonInteractive: true });
4343

4444
if (jsonFlag) {
4545
enableJsonOutput();

0 commit comments

Comments
 (0)