Skip to content

Commit

Permalink
feat(eas-cli): Unhide deploy and deploy:alias commands (#2807)
Browse files Browse the repository at this point in the history
* Unhide deploy command

* Add CHANGELOG entry
  • Loading branch information
kitten authored Jan 9, 2025
1 parent ae4ca91 commit eaf15ac
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This is the log of notable changes to EAS CLI and related packages.

- Load `.env` variables even when `--environment` is specified for `deploy` command. Conflicts will be highlighted by a warning message. ([#2783](https://github.com/expo/eas-cli/pull/2783) by [@kitten](https://github.com/kitten))
- Silence all non-command output in non-interactive mode of eas env:exec. ([#2800](https://github.com/expo/eas-cli/pull/2800) by [@wschurman](https://github.com/wschurman))
- Unhide `deploy` and `deploy:alias` commands ([#2807](https://github.com/expo/eas-cli/pull/2807) by [@kitten](https://github.com/kitten))

### 🐛 Bug fixes

Expand Down
3 changes: 0 additions & 3 deletions packages/eas-cli/src/commands/worker/alias.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ interface RawDeployAliasFlags {
export default class WorkerAlias extends EasCommand {
static override description = 'Assign deployment aliases';
static override aliases = ['deploy:alias', 'deploy:promote'];

// TODO(@kitten): Keep command hidden until worker deployments are live
static override hidden = true;
static override state = 'beta';

static override flags = {
Expand Down
3 changes: 0 additions & 3 deletions packages/eas-cli/src/commands/worker/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ export default class WorkerDeploy extends EasCommand {
static override description = 'Deploy your Expo web build';
static override aliases = ['deploy'];
static override usage = [chalk`deploy {dim [options]}`, `deploy --prod`];

// TODO(@kitten): Keep command hidden until worker deployments are live
static override hidden = true;
static override state = 'beta';

static override flags = {
Expand Down

0 comments on commit eaf15ac

Please sign in to comment.