Skip to content

Commit

Permalink
v0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsokal committed Jul 23, 2021
1 parent d4e15bb commit 8780282
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 26 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.21.0"
"version": "0.22.0"
}
72 changes: 50 additions & 22 deletions packages/eas-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ eas --help COMMAND
* [`eas device:list`](#eas-devicelist)
* [`eas device:view [UDID]`](#eas-deviceview-udid)
* [`eas help [COMMAND]`](#eas-help-command)
* [`eas project:info`](#eas-projectinfo)
* [`eas project:init`](#eas-projectinit)
* [`eas secret:create`](#eas-secretcreate)
* [`eas secret:delete`](#eas-secretdelete)
* [`eas secret:list`](#eas-secretlist)
Expand All @@ -69,7 +71,7 @@ ALIASES
$ eas login
```

_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/account/login.ts)_
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/account/login.ts)_

## `eas account:logout`

Expand All @@ -83,7 +85,7 @@ ALIASES
$ eas logout
```

_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/account/logout.ts)_
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/account/logout.ts)_

## `eas account:view`

Expand All @@ -97,7 +99,7 @@ ALIASES
$ eas whoami
```

_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/account/view.ts)_
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/account/view.ts)_

## `eas analytics [STATUS]`

Expand All @@ -108,7 +110,7 @@ USAGE
$ eas analytics [STATUS]
```

_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/analytics.ts)_
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/analytics.ts)_

## `eas build`

Expand All @@ -128,7 +130,7 @@ OPTIONS
--[no-]wait Wait for build(s) to complete
```

_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/build/index.ts)_
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/build/index.ts)_

## `eas build:cancel [BUILD_ID]`

Expand All @@ -139,7 +141,7 @@ USAGE
$ eas build:cancel [BUILD_ID]
```

_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/build/cancel.ts)_
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/build/cancel.ts)_

## `eas build:configure`

Expand All @@ -153,7 +155,7 @@ OPTIONS
-p, --platform=(android|ios|all) Platform to configure
```

_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/build/configure.ts)_
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/build/configure.ts)_

## `eas build:list`

Expand All @@ -169,7 +171,7 @@ OPTIONS
--status=(new|in-queue|in-progress|errored|finished|canceled)
```

_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/build/list.ts)_
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/build/list.ts)_

## `eas build:view [BUILD_ID]`

Expand All @@ -180,7 +182,7 @@ USAGE
$ eas build:view [BUILD_ID]
```

_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/build/view.ts)_
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/build/view.ts)_

## `eas credentials`

Expand All @@ -191,7 +193,7 @@ USAGE
$ eas credentials
```

_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/credentials.ts)_
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/credentials.ts)_

## `eas device:create`

Expand All @@ -202,7 +204,7 @@ USAGE
$ eas device:create
```

_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/device/create.ts)_
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/device/create.ts)_

## `eas device:list`

Expand All @@ -216,7 +218,7 @@ OPTIONS
--apple-team-id=apple-team-id
```

_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/device/list.ts)_
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/device/list.ts)_

## `eas device:view [UDID]`

Expand All @@ -227,7 +229,7 @@ USAGE
$ eas device:view [UDID]
```

_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/device/view.ts)_
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/device/view.ts)_

## `eas help [COMMAND]`

Expand All @@ -246,6 +248,31 @@ OPTIONS

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.0/src/commands/help.ts)_

## `eas project:info`

information about the current project

```
USAGE
$ eas project:info
```

_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/project/info.ts)_

## `eas project:init`

create or link an EAS project

```
USAGE
$ eas project:init
ALIASES
$ eas init
```

_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/project/init.ts)_

## `eas secret:create`

Create an environment secret on the current project or owner account.
Expand All @@ -255,12 +282,13 @@ USAGE
$ eas secret:create
OPTIONS
--force Delete and recreate existing secrets
--name=name Name of the secret
--scope=(account|project) [default: project] Scope for the secret
--value=value Value of the secret
```

_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/secret/create.ts)_
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/secret/create.ts)_

## `eas secret:delete`

Expand All @@ -277,7 +305,7 @@ DESCRIPTION
Unsure where to find the secret's ID? Run eas secrets:list
```

_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/secret/delete.ts)_
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/secret/delete.ts)_

## `eas secret:list`

Expand All @@ -288,7 +316,7 @@ USAGE
$ eas secret:list
```

_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/secret/list.ts)_
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/secret/list.ts)_

## `eas submit --platform=(android|ios)`

Expand Down Expand Up @@ -368,7 +396,7 @@ EXAMPLES
and provide its App ID
```

_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/submit.ts)_
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/submit.ts)_

## `eas webhook:create`

Expand All @@ -387,7 +415,7 @@ OPTIONS
--url=url Webhook URL
```

_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/webhook/create.ts)_
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/webhook/create.ts)_

## `eas webhook:delete [ID]`

Expand All @@ -401,7 +429,7 @@ ARGUMENTS
ID ID of the webhook to delete
```

_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/webhook/delete.ts)_
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/webhook/delete.ts)_

## `eas webhook:list`

Expand All @@ -415,7 +443,7 @@ OPTIONS
--event=(BUILD) Event type that triggers the webhook
```

_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/webhook/list.ts)_
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/webhook/list.ts)_

## `eas webhook:update`

Expand All @@ -435,7 +463,7 @@ OPTIONS
--url=url Webhook URL
```

_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/webhook/update.ts)_
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/webhook/update.ts)_

## `eas webhook:view ID`

Expand All @@ -449,5 +477,5 @@ ARGUMENTS
ID ID of the webhook to view
```

_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.21.0/packages/eas-cli/src/commands/webhook/view.ts)_
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.22.0/packages/eas-cli/src/commands/webhook/view.ts)_
<!-- commandsstop -->
4 changes: 2 additions & 2 deletions packages/eas-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eas-cli",
"description": "EAS command line tool",
"version": "0.21.0",
"version": "0.22.0",
"author": "Expo <[email protected]>",
"bin": {
"eas": "./bin/run"
Expand All @@ -14,7 +14,7 @@
"@expo/config": "3.3.42",
"@expo/config-plugins": "3.0.3",
"@expo/eas-build-job": "0.2.44",
"@expo/eas-json": "^0.21.0",
"@expo/eas-json": "^0.22.0",
"@expo/json-file": "8.2.25",
"@expo/pkcs12": "0.0.4",
"@expo/plist": "0.0.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/eas-json/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@expo/eas-json",
"description": "A library for interacting with the eas.json",
"version": "0.21.0",
"version": "0.22.0",
"author": "Expo <[email protected]>",
"bugs": "https://github.com/expo/eas-cli/issues",
"dependencies": {
Expand Down

0 comments on commit 8780282

Please sign in to comment.