shipthis 0.0.35 → 0.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/apple/apiKey.md +1 -1
- package/docs/apple/certificate.md +1 -1
- package/docs/game/ios/profile.md +0 -1
- package/docs/game/job.md +14 -0
- package/docs/game/list.md +4 -0
- package/docs/game/ship.md +15 -0
- package/docs/game/status.md +5 -1
- package/docs/game/wizard.md +25 -1
- package/docs/login.md +4 -4
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/docs/apple/apiKey.md
CHANGED
|
@@ -24,7 +24,7 @@ these commands. To do that please run the following commands first:
|
|
|
24
24
|
|
|
25
25
|
## Example
|
|
26
26
|
|
|
27
|
-
[](https://asciinema.org/a/PsCq8H4NowWSiGGMLraosAh9a)
|
|
27
|
+
[](https://asciinema.org/a/PsCq8H4NowWSiGGMLraosAh9a#shipthis-col120row32)
|
|
28
28
|
|
|
29
29
|
## Commands
|
|
30
30
|
|
|
@@ -26,7 +26,7 @@ these commands. To do that please run the following commands first:
|
|
|
26
26
|
|
|
27
27
|
## Example
|
|
28
28
|
|
|
29
|
-
[](https://asciinema.org/a/Zm53VNoKQx2n0Qrj0UMLIDHHZ)
|
|
29
|
+
[](https://asciinema.org/a/Zm53VNoKQx2n0Qrj0UMLIDHHZ#shipthis-col120row32)
|
|
30
30
|
|
|
31
31
|
## Commands
|
|
32
32
|
|
package/docs/game/ios/profile.md
CHANGED
package/docs/game/job.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
Commands in the `game job` topic are prefixed `shipthis game job`. They relate to jobs for a specific game (generally in the currently directory).
|
|
4
4
|
|
|
5
|
+
:::info
|
|
6
|
+
A **job** is a set of work done to create a new build of your game. You can create a new job by running the command:
|
|
7
|
+
|
|
8
|
+
- [`shipthis game ship`](/docs/reference/game/ship)
|
|
9
|
+
|
|
10
|
+
Running the [ship command](/docs/reference/game/ship) will create a new job, and then automatically run the [`shipthis game job status`](/docs/reference/game/job#game-job-status) command with the `--follow` flag set so that you can watch the build in **real-time**.
|
|
11
|
+
|
|
12
|
+
**You can also watch and view jobs within the [ShipThis Dashboard](/dashboard).**
|
|
13
|
+
:::
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
[](https://asciinema.org/a/25NfXdtyEYt1E3wm6caBxxoTK#shipthis-col120row32)
|
|
18
|
+
|
|
5
19
|
## Commands
|
|
6
20
|
|
|
7
21
|
### `game job list`
|
package/docs/game/list.md
CHANGED
package/docs/game/ship.md
CHANGED
|
@@ -4,6 +4,21 @@
|
|
|
4
4
|
|
|
5
5
|
Builds the app (for all platforms with valid credentials) and ships it to the stores.
|
|
6
6
|
|
|
7
|
+
After uploading the files to the ShipThis backend. it will run the [`shipthis game job status`](/docs/reference/game/job#game-job-status) command with the `--follow` flag so that you can watch the job output in **real-time**.
|
|
8
|
+
|
|
9
|
+
:::info
|
|
10
|
+
This command creates a new job. A **job** is a set of work done to create a new
|
|
11
|
+
build of your game.
|
|
12
|
+
|
|
13
|
+
To do this, it uploads the code in the current directory to the ShipThis backend.
|
|
14
|
+
To control which files are uploaded, in the **shipthis.json** file there are two [glob](https://en.wikipedia.org/wiki/Glob_(programming)) arrays **shippedFilesGlobs** and **ignoredFilesGlobs**.
|
|
15
|
+
:::
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## Example
|
|
19
|
+
|
|
20
|
+
[](https://asciinema.org/a/97iHQ7Vv1qcz0I3jntMmECqLJ#shipthis-col160row32)
|
|
21
|
+
|
|
7
22
|
## Help Output
|
|
8
23
|
|
|
9
24
|
```
|
package/docs/game/status.md
CHANGED
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## Description
|
|
4
4
|
|
|
5
|
-
Shows the status of the
|
|
5
|
+
Shows the status of a specific game (generally in the currently directory).
|
|
6
|
+
|
|
7
|
+
## Example
|
|
8
|
+
|
|
9
|
+
[](https://asciinema.org/a/cv0VHq15A7aHklMM1QSgCnDYT)
|
|
6
10
|
|
|
7
11
|
## Help Output
|
|
8
12
|
|
package/docs/game/wizard.md
CHANGED
|
@@ -2,7 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
## Description
|
|
4
4
|
|
|
5
|
-
Runs all the steps for the specific platform
|
|
5
|
+
Runs all the steps for the specific platform. Please see [The Game Wizard 🧙🪄✨](/docs/wizard)
|
|
6
|
+
page for more info about the wizard.
|
|
7
|
+
|
|
8
|
+
:::tip
|
|
9
|
+
You will need to be authenticated against ShipThis before you can use the wizard.
|
|
10
|
+
To do that please run the following command first:
|
|
11
|
+
|
|
12
|
+
- [`shipthis login`](/docs/reference/login)
|
|
13
|
+
|
|
14
|
+
:::
|
|
15
|
+
|
|
16
|
+
This command runs the following other commands:
|
|
17
|
+
|
|
18
|
+
- [`shipthis game create`](/docs/reference/game/create)
|
|
19
|
+
- [`shipthis apple login`](/docs/reference/apple/login)
|
|
20
|
+
- [`shipthis apple apiKey create`](/docs/reference/apple/apiKey)
|
|
21
|
+
- [`shipthis apple certificate create`](/docs/reference/apple/certificate)
|
|
22
|
+
- [`shipthis game ios app create`](/docs/reference/game/ios/app)
|
|
23
|
+
- [`shipthis game ios app sync`](/docs/reference/game/ios/app)
|
|
24
|
+
- [`shipthis game ios profile create`](/docs/reference/game/ios/profile)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## Example
|
|
28
|
+
|
|
29
|
+
[](https://asciinema.org/a/hOV55wY2oCeccoQXr0OgxWuhk#shipthis-col120row32)
|
|
6
30
|
|
|
7
31
|
## Help Output
|
|
8
32
|
|
package/docs/login.md
CHANGED
|
@@ -6,8 +6,8 @@ Authenticate - will create a new account if one does not exist.
|
|
|
6
6
|
|
|
7
7
|
:::info
|
|
8
8
|
ShipThis is a cloud build command-line tool. To enable this, you need to create
|
|
9
|
-
an account. There is also a [web dashboard](/dashboard) where
|
|
10
|
-
of your games.
|
|
9
|
+
an account. There is also a [web dashboard](https://shipthis.cc/dashboard) where
|
|
10
|
+
you can view details of your games.
|
|
11
11
|
:::
|
|
12
12
|
|
|
13
13
|
## Example
|
|
@@ -16,7 +16,7 @@ of your games.
|
|
|
16
16
|
|
|
17
17
|
## Help Output
|
|
18
18
|
|
|
19
|
-
```
|
|
19
|
+
```bash
|
|
20
20
|
USAGE
|
|
21
21
|
$ shipthis login [-f] [-e <value>]
|
|
22
22
|
|
|
@@ -31,4 +31,4 @@ EXAMPLES
|
|
|
31
31
|
$ shipthis login
|
|
32
32
|
|
|
33
33
|
$ shipthis login --force --email me@email.nowhere
|
|
34
|
-
```
|
|
34
|
+
```
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED