shipthis 0.0.24 → 0.0.26
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/README.md +52 -2
- package/dist/commands/game/list.js +3 -2
- package/docs/README.md +50 -1
- package/docs/apple/apiKey.md +1 -1
- package/docs/apple/certificate.md +1 -1
- package/docs/apple/login.md +1 -1
- package/docs/apple/status.md +1 -1
- package/docs/apple.md +2 -2
- package/docs/dashboard.md +1 -1
- package/docs/game/build.md +1 -1
- package/docs/game/create.md +2 -2
- package/docs/game/details.md +1 -1
- package/docs/game/export.md +1 -1
- package/docs/game/ios/app.md +1 -27
- package/docs/game/ios/profile.md +1 -1
- package/docs/game/ios/status.md +1 -1
- package/docs/game/ios.md +1 -2
- package/docs/game/job.md +1 -1
- package/docs/game/list.md +1 -1
- package/docs/game/ship.md +1 -1
- package/docs/game/status.md +1 -1
- package/docs/game/wizard.md +1 -1
- package/docs/game.md +2 -2
- package/docs/help.md +1 -1
- package/docs/login.md +1 -1
- package/docs/status.md +1 -1
- package/oclif.manifest.json +171 -171
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# ShipThis CLI
|
|
1
|
+
# ShipThis CLI Reference
|
|
2
2
|
|
|
3
3
|
## Introduction
|
|
4
4
|
|
|
@@ -6,7 +6,56 @@ ShipThis is a platform that helps you manage shipping your [Godot](https://godot
|
|
|
6
6
|
|
|
7
7
|
This is all done with an easy to use command line tool called `shipthis`.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
## Quickstart
|
|
10
|
+
|
|
11
|
+
Let's discover **ShipThis in less than 5 minutes**.
|
|
12
|
+
|
|
13
|
+
### Getting Started
|
|
14
|
+
|
|
15
|
+
ShipThis is a platform that helps you manage shipping your [Godot](https://godotengine.org/) games to the App Store.
|
|
16
|
+
|
|
17
|
+
#### What you'll need
|
|
18
|
+
|
|
19
|
+
- A Godot game
|
|
20
|
+
- [Node.js](https://nodejs.org/en/download/) version 18.0 or above:
|
|
21
|
+
- When installing Node.js, you are recommended to check all checkboxes related to dependencies.
|
|
22
|
+
- An [Apple Developer](https://developer.apple.com) account
|
|
23
|
+
|
|
24
|
+
### 1. Install ShipThis
|
|
25
|
+
|
|
26
|
+
ShipThis can be installed as a package via the [NPM package manager](https://www.npmjs.com/). Run the following at the command line:
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
npm install -g shipthis
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### 2. Create an account
|
|
33
|
+
|
|
34
|
+
Set up an account with ShipThis by logging in for the first time using the [`shipthis login`](https://shipthis.cc/docs/reference/login) command.
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
shipthis login
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### 3. Configure your game
|
|
41
|
+
|
|
42
|
+
Set up your ShipThis configuration using the built in [wizard](https://shipthis.cc/docs/wizard):
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
shipthis game wizard
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### 4. Ship
|
|
49
|
+
|
|
50
|
+
Now you can publish your game to TestFlight with the [`shipthis game ship`](https://shipthis.cc/docs/reference/game/ship) command:
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
shipthis game ship
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Once you are happy with the build you can submit it to Apple using [App Store
|
|
57
|
+
Connect](https://appstoreconnect.apple.com/).
|
|
58
|
+
|
|
10
59
|
|
|
11
60
|
## Topics
|
|
12
61
|
|
|
@@ -19,3 +68,4 @@ You can discover **ShipThis in less than 5 minutes** via our [Quick Start Guide]
|
|
|
19
68
|
- [login](https://shipthis.cc/docs/reference/login) - Signin or create a new account
|
|
20
69
|
- [status](https://shipthis.cc/docs/reference/status) - Display your overall ShipThis account status
|
|
21
70
|
- [help](https://shipthis.cc/docs/reference/help) - Display help for a specific topic or command
|
|
71
|
+
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
-
import { render,
|
|
2
|
+
import { render, Text, Box } from 'ink';
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
4
|
import { B as BaseAuthenticatedCommand, w as getProjects, f as getShortDate } from '../../baseGameCommand-B3NbuvDu.js';
|
|
5
5
|
import 'path';
|
|
@@ -56,7 +56,8 @@ class GameList extends BaseAuthenticatedCommand {
|
|
|
56
56
|
});
|
|
57
57
|
render(
|
|
58
58
|
/* @__PURE__ */ jsxs(App, { children: [
|
|
59
|
-
/* @__PURE__ */ jsx(
|
|
59
|
+
gameListResponse.data.length === 0 && params.pageNumber == 0 && /* @__PURE__ */ jsx(Text, { children: "No games found. Create one now with $ shipthis game wizard" }),
|
|
60
|
+
gameListResponse.data.length > 0 && /* @__PURE__ */ jsx(Table, { data }),
|
|
60
61
|
gameListResponse.pageCount > 1 && /* @__PURE__ */ jsxs(Box, { marginTop: 1, flexDirection: "column", children: [
|
|
61
62
|
/* @__PURE__ */ jsx(Text, { children: `Showing page ${flags.pageNumber + 1} of ${gameListResponse.pageCount}.` }),
|
|
62
63
|
/* @__PURE__ */ jsx(Text, { children: "Use the --pageNumber parameter to see other pages." })
|
package/docs/README.md
CHANGED
|
@@ -6,7 +6,56 @@ ShipThis is a platform that helps you manage shipping your [Godot](https://godot
|
|
|
6
6
|
|
|
7
7
|
This is all done with an easy to use command line tool called `shipthis`.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
## Quickstart
|
|
10
|
+
|
|
11
|
+
Let's discover **ShipThis in less than 5 minutes**.
|
|
12
|
+
|
|
13
|
+
### Getting Started
|
|
14
|
+
|
|
15
|
+
ShipThis is a platform that helps you manage shipping your [Godot](https://godotengine.org/) games to the App Store.
|
|
16
|
+
|
|
17
|
+
#### What you'll need
|
|
18
|
+
|
|
19
|
+
- A Godot game
|
|
20
|
+
- [Node.js](https://nodejs.org/en/download/) version 18.0 or above:
|
|
21
|
+
- When installing Node.js, you are recommended to check all checkboxes related to dependencies.
|
|
22
|
+
- An [Apple Developer](https://developer.apple.com) account
|
|
23
|
+
|
|
24
|
+
### 1. Install ShipThis
|
|
25
|
+
|
|
26
|
+
ShipThis can be installed as a package via the [NPM package manager](https://www.npmjs.com/). Run the following at the command line:
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
npm install -g shipthis
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### 2. Create an account
|
|
33
|
+
|
|
34
|
+
Set up an account with ShipThis by logging in for the first time using the [`shipthis login`](https://shipthis.cc/docs/reference/login) command.
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
shipthis login
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### 3. Configure your game
|
|
41
|
+
|
|
42
|
+
Set up your ShipThis configuration using the built in [wizard](https://shipthis.cc/docs/wizard):
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
shipthis game wizard
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### 4. Ship
|
|
49
|
+
|
|
50
|
+
Now you can publish your game to TestFlight with the [`shipthis game ship`](https://shipthis.cc/docs/reference/game/ship) command:
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
shipthis game ship
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Once you are happy with the build you can submit it to Apple using [App Store
|
|
57
|
+
Connect](https://appstoreconnect.apple.com/).
|
|
58
|
+
|
|
10
59
|
|
|
11
60
|
## Topics
|
|
12
61
|
|
package/docs/apple/apiKey.md
CHANGED
package/docs/apple/login.md
CHANGED
package/docs/apple/status.md
CHANGED
package/docs/apple.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Topic: `apple`
|
|
2
2
|
|
|
3
|
-
Commands in the Apple topic are prefixed `
|
|
3
|
+
Commands in the Apple topic are prefixed `shipthis apple`. They relate to linking your ShipThis account with your Apple Developer Account. You need to be authenticated against ShipThis (by running [`shipthis login`](/docs/reference/login)) before running the Apple commands.
|
|
4
4
|
|
|
5
5
|
## Status
|
|
6
6
|
|
package/docs/dashboard.md
CHANGED
package/docs/game/build.md
CHANGED
package/docs/game/create.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# game create
|
|
1
|
+
# Command: `game create`
|
|
2
2
|
|
|
3
3
|
## Description
|
|
4
4
|
|
|
@@ -7,7 +7,7 @@ Creates a new game in your [ShipThis account](https://shipthis.cc/games).
|
|
|
7
7
|
It will read the name of your game from your `project.godot` file. You will be
|
|
8
8
|
prompted to confirm this name, or you can specify one with the `--name` flag.
|
|
9
9
|
|
|
10
|
-
If there is already a ShipThis game config file (`
|
|
10
|
+
If there is already a ShipThis game config file (`shipthis.json`) in the current
|
|
11
11
|
directory then you will need to use the `--force` flag to create a new game and
|
|
12
12
|
overwrite this file with the config for the new game.
|
|
13
13
|
|
package/docs/game/details.md
CHANGED
package/docs/game/export.md
CHANGED
package/docs/game/ios/app.md
CHANGED
|
@@ -1,36 +1,10 @@
|
|
|
1
|
-
# game ios app
|
|
1
|
+
# Topic: `game ios app`
|
|
2
2
|
|
|
3
3
|
Commands related to the App Store App for a specific game
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
## Commands
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
### game ios app addTester
|
|
10
|
-
|
|
11
|
-
#### Description
|
|
12
|
-
|
|
13
|
-
Adds a test user to the game in App Store Connect.
|
|
14
|
-
|
|
15
|
-
#### Help Output
|
|
16
|
-
|
|
17
|
-
```
|
|
18
|
-
USAGE
|
|
19
|
-
$ shipthis game ios app addTester [-g <value>] [-e <value>] [-f <value>] [-l <value>]
|
|
20
|
-
|
|
21
|
-
FLAGS
|
|
22
|
-
-e, --email=<value> The email address of the tester
|
|
23
|
-
-f, --firstName=<value> The first name of the tester
|
|
24
|
-
-g, --gameId=<value> The ID of the game
|
|
25
|
-
-l, --lastName=<value> The last name of the tester
|
|
26
|
-
|
|
27
|
-
DESCRIPTION
|
|
28
|
-
Adds a test user to the game in App Store Connect.
|
|
29
|
-
|
|
30
|
-
EXAMPLES
|
|
31
|
-
$ shipthis game ios app addTester
|
|
32
|
-
```
|
|
33
|
-
|
|
34
8
|
### game ios app create
|
|
35
9
|
|
|
36
10
|
#### Description
|
package/docs/game/ios/profile.md
CHANGED
package/docs/game/ios/status.md
CHANGED
package/docs/game/ios.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Topic:
|
|
1
|
+
# Topic: `game ios`
|
|
2
2
|
|
|
3
3
|
Commands in the Game iOS topic are prefixed `shipthis game ios`. They relate to
|
|
4
4
|
managing the iOS platform configuration for the game in the current directory.
|
|
@@ -11,7 +11,6 @@ these commands. To do that please run the following commands first:
|
|
|
11
11
|
- [`shipthis apple login`](/docs/reference/apple/login)
|
|
12
12
|
:::
|
|
13
13
|
|
|
14
|
-
|
|
15
14
|
## Topics
|
|
16
15
|
|
|
17
16
|
- [game ios app](/docs/reference/game/ios/app)
|
package/docs/game/job.md
CHANGED
package/docs/game/list.md
CHANGED
package/docs/game/ship.md
CHANGED
package/docs/game/status.md
CHANGED
package/docs/game/wizard.md
CHANGED
package/docs/game.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Topic: `game`
|
|
2
2
|
|
|
3
|
-
Commands in the
|
|
3
|
+
Commands in the game topic are prefixed `shipthis game`. They relate to configuring
|
|
4
4
|
the specific game in the current working directory.
|
|
5
5
|
|
|
6
6
|
You will need to be authenticated against ShipThis (by running [`shipthis login`](login)) before running the Game commands.
|
package/docs/help.md
CHANGED
package/docs/login.md
CHANGED
package/docs/status.md
CHANGED
package/oclif.manifest.json
CHANGED
|
@@ -514,10 +514,10 @@
|
|
|
514
514
|
"wizard.js"
|
|
515
515
|
]
|
|
516
516
|
},
|
|
517
|
-
"apple:
|
|
517
|
+
"apple:certificate:create": {
|
|
518
518
|
"aliases": [],
|
|
519
519
|
"args": {},
|
|
520
|
-
"description": "Creates an
|
|
520
|
+
"description": "Creates an iOS Distribution Certificate in your Apple Developer account.\nSaves the certificate with the private key to your ShipThis account",
|
|
521
521
|
"examples": [
|
|
522
522
|
"<%= config.bin %> <%= command.id %>",
|
|
523
523
|
"<%= config.bin %> <%= command.id %> --force"
|
|
@@ -539,7 +539,7 @@
|
|
|
539
539
|
},
|
|
540
540
|
"hasDynamicHelp": false,
|
|
541
541
|
"hiddenAliases": [],
|
|
542
|
-
"id": "apple:
|
|
542
|
+
"id": "apple:certificate:create",
|
|
543
543
|
"pluginAlias": "shipthis",
|
|
544
544
|
"pluginName": "shipthis",
|
|
545
545
|
"pluginType": "core",
|
|
@@ -549,11 +549,11 @@
|
|
|
549
549
|
"dist",
|
|
550
550
|
"commands",
|
|
551
551
|
"apple",
|
|
552
|
-
"
|
|
552
|
+
"certificate",
|
|
553
553
|
"create.js"
|
|
554
554
|
]
|
|
555
555
|
},
|
|
556
|
-
"apple:
|
|
556
|
+
"apple:certificate:export": {
|
|
557
557
|
"aliases": [],
|
|
558
558
|
"args": {
|
|
559
559
|
"file": {
|
|
@@ -562,9 +562,9 @@
|
|
|
562
562
|
"required": true
|
|
563
563
|
}
|
|
564
564
|
},
|
|
565
|
-
"description": "Saves the current
|
|
565
|
+
"description": "Saves the current Apple Distribution Certificate to a ZIP file.",
|
|
566
566
|
"examples": [
|
|
567
|
-
"<%= config.bin %> <%= command.id %>
|
|
567
|
+
"<%= config.bin %> <%= command.id %> userCert.zip"
|
|
568
568
|
],
|
|
569
569
|
"flags": {
|
|
570
570
|
"force": {
|
|
@@ -577,7 +577,7 @@
|
|
|
577
577
|
},
|
|
578
578
|
"hasDynamicHelp": false,
|
|
579
579
|
"hiddenAliases": [],
|
|
580
|
-
"id": "apple:
|
|
580
|
+
"id": "apple:certificate:export",
|
|
581
581
|
"pluginAlias": "shipthis",
|
|
582
582
|
"pluginName": "shipthis",
|
|
583
583
|
"pluginType": "core",
|
|
@@ -588,11 +588,11 @@
|
|
|
588
588
|
"dist",
|
|
589
589
|
"commands",
|
|
590
590
|
"apple",
|
|
591
|
-
"
|
|
591
|
+
"certificate",
|
|
592
592
|
"export.js"
|
|
593
593
|
]
|
|
594
594
|
},
|
|
595
|
-
"apple:
|
|
595
|
+
"apple:certificate:import": {
|
|
596
596
|
"aliases": [],
|
|
597
597
|
"args": {
|
|
598
598
|
"file": {
|
|
@@ -601,9 +601,9 @@
|
|
|
601
601
|
"required": true
|
|
602
602
|
}
|
|
603
603
|
},
|
|
604
|
-
"description": "Imports an
|
|
604
|
+
"description": "Imports an iOS Distribution Certificate to your ShipThis account",
|
|
605
605
|
"examples": [
|
|
606
|
-
"<%= config.bin %> <%= command.id %>
|
|
606
|
+
"<%= config.bin %> <%= command.id %> userCert.zip"
|
|
607
607
|
],
|
|
608
608
|
"flags": {
|
|
609
609
|
"force": {
|
|
@@ -615,7 +615,7 @@
|
|
|
615
615
|
},
|
|
616
616
|
"hasDynamicHelp": false,
|
|
617
617
|
"hiddenAliases": [],
|
|
618
|
-
"id": "apple:
|
|
618
|
+
"id": "apple:certificate:import",
|
|
619
619
|
"pluginAlias": "shipthis",
|
|
620
620
|
"pluginName": "shipthis",
|
|
621
621
|
"pluginType": "core",
|
|
@@ -626,14 +626,14 @@
|
|
|
626
626
|
"dist",
|
|
627
627
|
"commands",
|
|
628
628
|
"apple",
|
|
629
|
-
"
|
|
629
|
+
"certificate",
|
|
630
630
|
"import.js"
|
|
631
631
|
]
|
|
632
632
|
},
|
|
633
|
-
"apple:
|
|
633
|
+
"apple:certificate:status": {
|
|
634
634
|
"aliases": [],
|
|
635
635
|
"args": {},
|
|
636
|
-
"description": "Displays the status of
|
|
636
|
+
"description": "Displays the status of the iOS Distribution certificates in your Apple and ShipThis accounts.\nThese are used to sign all of your iOS apps.",
|
|
637
637
|
"examples": [
|
|
638
638
|
"<%= config.bin %> <%= command.id %>",
|
|
639
639
|
"<%= config.bin %> <%= command.id %> --noAppleAuth"
|
|
@@ -648,7 +648,7 @@
|
|
|
648
648
|
},
|
|
649
649
|
"hasDynamicHelp": false,
|
|
650
650
|
"hiddenAliases": [],
|
|
651
|
-
"id": "apple:
|
|
651
|
+
"id": "apple:certificate:status",
|
|
652
652
|
"pluginAlias": "shipthis",
|
|
653
653
|
"pluginName": "shipthis",
|
|
654
654
|
"pluginType": "core",
|
|
@@ -659,14 +659,14 @@
|
|
|
659
659
|
"dist",
|
|
660
660
|
"commands",
|
|
661
661
|
"apple",
|
|
662
|
-
"
|
|
662
|
+
"certificate",
|
|
663
663
|
"status.js"
|
|
664
664
|
]
|
|
665
665
|
},
|
|
666
|
-
"apple:
|
|
666
|
+
"apple:apiKey:create": {
|
|
667
667
|
"aliases": [],
|
|
668
668
|
"args": {},
|
|
669
|
-
"description": "Creates an
|
|
669
|
+
"description": "Creates an App Store Connect API Key in your Apple Developer account.\nSaves the private key in your ShipThis account.",
|
|
670
670
|
"examples": [
|
|
671
671
|
"<%= config.bin %> <%= command.id %>",
|
|
672
672
|
"<%= config.bin %> <%= command.id %> --force"
|
|
@@ -688,7 +688,7 @@
|
|
|
688
688
|
},
|
|
689
689
|
"hasDynamicHelp": false,
|
|
690
690
|
"hiddenAliases": [],
|
|
691
|
-
"id": "apple:
|
|
691
|
+
"id": "apple:apiKey:create",
|
|
692
692
|
"pluginAlias": "shipthis",
|
|
693
693
|
"pluginName": "shipthis",
|
|
694
694
|
"pluginType": "core",
|
|
@@ -698,11 +698,11 @@
|
|
|
698
698
|
"dist",
|
|
699
699
|
"commands",
|
|
700
700
|
"apple",
|
|
701
|
-
"
|
|
701
|
+
"apiKey",
|
|
702
702
|
"create.js"
|
|
703
703
|
]
|
|
704
704
|
},
|
|
705
|
-
"apple:
|
|
705
|
+
"apple:apiKey:export": {
|
|
706
706
|
"aliases": [],
|
|
707
707
|
"args": {
|
|
708
708
|
"file": {
|
|
@@ -711,9 +711,9 @@
|
|
|
711
711
|
"required": true
|
|
712
712
|
}
|
|
713
713
|
},
|
|
714
|
-
"description": "Saves the current
|
|
714
|
+
"description": "Saves the current App Store Connect API Key to a ZIP file",
|
|
715
715
|
"examples": [
|
|
716
|
-
"<%= config.bin %> <%= command.id %>
|
|
716
|
+
"<%= config.bin %> <%= command.id %> userApiKey.zip"
|
|
717
717
|
],
|
|
718
718
|
"flags": {
|
|
719
719
|
"force": {
|
|
@@ -726,7 +726,7 @@
|
|
|
726
726
|
},
|
|
727
727
|
"hasDynamicHelp": false,
|
|
728
728
|
"hiddenAliases": [],
|
|
729
|
-
"id": "apple:
|
|
729
|
+
"id": "apple:apiKey:export",
|
|
730
730
|
"pluginAlias": "shipthis",
|
|
731
731
|
"pluginName": "shipthis",
|
|
732
732
|
"pluginType": "core",
|
|
@@ -737,11 +737,11 @@
|
|
|
737
737
|
"dist",
|
|
738
738
|
"commands",
|
|
739
739
|
"apple",
|
|
740
|
-
"
|
|
740
|
+
"apiKey",
|
|
741
741
|
"export.js"
|
|
742
742
|
]
|
|
743
743
|
},
|
|
744
|
-
"apple:
|
|
744
|
+
"apple:apiKey:import": {
|
|
745
745
|
"aliases": [],
|
|
746
746
|
"args": {
|
|
747
747
|
"file": {
|
|
@@ -750,9 +750,9 @@
|
|
|
750
750
|
"required": true
|
|
751
751
|
}
|
|
752
752
|
},
|
|
753
|
-
"description": "Imports an
|
|
753
|
+
"description": "Imports an App Store Connect API Key ZIP file into your ShipThis account",
|
|
754
754
|
"examples": [
|
|
755
|
-
"<%= config.bin %> <%= command.id %>
|
|
755
|
+
"<%= config.bin %> <%= command.id %> userApiKey.zip"
|
|
756
756
|
],
|
|
757
757
|
"flags": {
|
|
758
758
|
"force": {
|
|
@@ -764,7 +764,7 @@
|
|
|
764
764
|
},
|
|
765
765
|
"hasDynamicHelp": false,
|
|
766
766
|
"hiddenAliases": [],
|
|
767
|
-
"id": "apple:
|
|
767
|
+
"id": "apple:apiKey:import",
|
|
768
768
|
"pluginAlias": "shipthis",
|
|
769
769
|
"pluginName": "shipthis",
|
|
770
770
|
"pluginType": "core",
|
|
@@ -775,14 +775,14 @@
|
|
|
775
775
|
"dist",
|
|
776
776
|
"commands",
|
|
777
777
|
"apple",
|
|
778
|
-
"
|
|
778
|
+
"apiKey",
|
|
779
779
|
"import.js"
|
|
780
780
|
]
|
|
781
781
|
},
|
|
782
|
-
"apple:
|
|
782
|
+
"apple:apiKey:status": {
|
|
783
783
|
"aliases": [],
|
|
784
784
|
"args": {},
|
|
785
|
-
"description": "Displays the status of
|
|
785
|
+
"description": "Displays the status of App Store Connect API Keys in your Apple and ShipThis accounts.\nThis API key is used to automatically publish your games to the App Store.",
|
|
786
786
|
"examples": [
|
|
787
787
|
"<%= config.bin %> <%= command.id %>",
|
|
788
788
|
"<%= config.bin %> <%= command.id %> --noAppleAuth"
|
|
@@ -797,7 +797,7 @@
|
|
|
797
797
|
},
|
|
798
798
|
"hasDynamicHelp": false,
|
|
799
799
|
"hiddenAliases": [],
|
|
800
|
-
"id": "apple:
|
|
800
|
+
"id": "apple:apiKey:status",
|
|
801
801
|
"pluginAlias": "shipthis",
|
|
802
802
|
"pluginName": "shipthis",
|
|
803
803
|
"pluginType": "core",
|
|
@@ -808,7 +808,7 @@
|
|
|
808
808
|
"dist",
|
|
809
809
|
"commands",
|
|
810
810
|
"apple",
|
|
811
|
-
"
|
|
811
|
+
"apiKey",
|
|
812
812
|
"status.js"
|
|
813
813
|
]
|
|
814
814
|
},
|
|
@@ -1117,14 +1117,21 @@
|
|
|
1117
1117
|
"status.js"
|
|
1118
1118
|
]
|
|
1119
1119
|
},
|
|
1120
|
-
"game:ios:
|
|
1120
|
+
"game:ios:profile:create": {
|
|
1121
1121
|
"aliases": [],
|
|
1122
1122
|
"args": {},
|
|
1123
|
-
"description": "
|
|
1123
|
+
"description": "Creates a Mobile Provisioning Profile in the Apple Developer Portal.",
|
|
1124
1124
|
"examples": [
|
|
1125
1125
|
"<%= config.bin %> <%= command.id %>"
|
|
1126
1126
|
],
|
|
1127
1127
|
"flags": {
|
|
1128
|
+
"quiet": {
|
|
1129
|
+
"char": "q",
|
|
1130
|
+
"description": "Avoid output except for interactions and errors",
|
|
1131
|
+
"name": "quiet",
|
|
1132
|
+
"allowNo": false,
|
|
1133
|
+
"type": "boolean"
|
|
1134
|
+
},
|
|
1128
1135
|
"gameId": {
|
|
1129
1136
|
"char": "g",
|
|
1130
1137
|
"description": "The ID of the game",
|
|
@@ -1133,34 +1140,16 @@
|
|
|
1133
1140
|
"multiple": false,
|
|
1134
1141
|
"type": "option"
|
|
1135
1142
|
},
|
|
1136
|
-
"
|
|
1137
|
-
"char": "e",
|
|
1138
|
-
"description": "The email address of the tester",
|
|
1139
|
-
"name": "email",
|
|
1140
|
-
"hasDynamicHelp": false,
|
|
1141
|
-
"multiple": false,
|
|
1142
|
-
"type": "option"
|
|
1143
|
-
},
|
|
1144
|
-
"firstName": {
|
|
1143
|
+
"force": {
|
|
1145
1144
|
"char": "f",
|
|
1146
|
-
"
|
|
1147
|
-
"
|
|
1148
|
-
"
|
|
1149
|
-
"multiple": false,
|
|
1150
|
-
"type": "option"
|
|
1151
|
-
},
|
|
1152
|
-
"lastName": {
|
|
1153
|
-
"char": "l",
|
|
1154
|
-
"description": "The last name of the tester",
|
|
1155
|
-
"name": "lastName",
|
|
1156
|
-
"hasDynamicHelp": false,
|
|
1157
|
-
"multiple": false,
|
|
1158
|
-
"type": "option"
|
|
1145
|
+
"name": "force",
|
|
1146
|
+
"allowNo": false,
|
|
1147
|
+
"type": "boolean"
|
|
1159
1148
|
}
|
|
1160
1149
|
},
|
|
1161
1150
|
"hasDynamicHelp": false,
|
|
1162
1151
|
"hiddenAliases": [],
|
|
1163
|
-
"id": "game:ios:
|
|
1152
|
+
"id": "game:ios:profile:create",
|
|
1164
1153
|
"pluginAlias": "shipthis",
|
|
1165
1154
|
"pluginName": "shipthis",
|
|
1166
1155
|
"pluginType": "core",
|
|
@@ -1172,25 +1161,24 @@
|
|
|
1172
1161
|
"commands",
|
|
1173
1162
|
"game",
|
|
1174
1163
|
"ios",
|
|
1175
|
-
"
|
|
1176
|
-
"
|
|
1164
|
+
"profile",
|
|
1165
|
+
"create.js"
|
|
1177
1166
|
]
|
|
1178
1167
|
},
|
|
1179
|
-
"game:ios:
|
|
1168
|
+
"game:ios:profile:export": {
|
|
1180
1169
|
"aliases": [],
|
|
1181
|
-
"args": {
|
|
1182
|
-
|
|
1170
|
+
"args": {
|
|
1171
|
+
"file": {
|
|
1172
|
+
"description": "Name of the ZIP file to create",
|
|
1173
|
+
"name": "file",
|
|
1174
|
+
"required": true
|
|
1175
|
+
}
|
|
1176
|
+
},
|
|
1177
|
+
"description": "Saves the current Mobile Provisioning Profile to a ZIP file",
|
|
1183
1178
|
"examples": [
|
|
1184
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1179
|
+
"<%= config.bin %> <%= command.id %> userProfile.zip"
|
|
1185
1180
|
],
|
|
1186
1181
|
"flags": {
|
|
1187
|
-
"quiet": {
|
|
1188
|
-
"char": "q",
|
|
1189
|
-
"description": "Avoid output except for interactions and errors",
|
|
1190
|
-
"name": "quiet",
|
|
1191
|
-
"allowNo": false,
|
|
1192
|
-
"type": "boolean"
|
|
1193
|
-
},
|
|
1194
1182
|
"gameId": {
|
|
1195
1183
|
"char": "g",
|
|
1196
1184
|
"description": "The ID of the game",
|
|
@@ -1199,24 +1187,9 @@
|
|
|
1199
1187
|
"multiple": false,
|
|
1200
1188
|
"type": "option"
|
|
1201
1189
|
},
|
|
1202
|
-
"appName": {
|
|
1203
|
-
"char": "n",
|
|
1204
|
-
"description": "The name of the App in the Apple Developer Portal",
|
|
1205
|
-
"name": "appName",
|
|
1206
|
-
"hasDynamicHelp": false,
|
|
1207
|
-
"multiple": false,
|
|
1208
|
-
"type": "option"
|
|
1209
|
-
},
|
|
1210
|
-
"bundleId": {
|
|
1211
|
-
"char": "b",
|
|
1212
|
-
"description": "The BundleId in the Apple Developer Portal",
|
|
1213
|
-
"name": "bundleId",
|
|
1214
|
-
"hasDynamicHelp": false,
|
|
1215
|
-
"multiple": false,
|
|
1216
|
-
"type": "option"
|
|
1217
|
-
},
|
|
1218
1190
|
"force": {
|
|
1219
1191
|
"char": "f",
|
|
1192
|
+
"description": "Overwrite the file if it already exists",
|
|
1220
1193
|
"name": "force",
|
|
1221
1194
|
"allowNo": false,
|
|
1222
1195
|
"type": "boolean"
|
|
@@ -1224,7 +1197,7 @@
|
|
|
1224
1197
|
},
|
|
1225
1198
|
"hasDynamicHelp": false,
|
|
1226
1199
|
"hiddenAliases": [],
|
|
1227
|
-
"id": "game:ios:
|
|
1200
|
+
"id": "game:ios:profile:export",
|
|
1228
1201
|
"pluginAlias": "shipthis",
|
|
1229
1202
|
"pluginName": "shipthis",
|
|
1230
1203
|
"pluginType": "core",
|
|
@@ -1236,16 +1209,22 @@
|
|
|
1236
1209
|
"commands",
|
|
1237
1210
|
"game",
|
|
1238
1211
|
"ios",
|
|
1239
|
-
"
|
|
1240
|
-
"
|
|
1212
|
+
"profile",
|
|
1213
|
+
"export.js"
|
|
1241
1214
|
]
|
|
1242
1215
|
},
|
|
1243
|
-
"game:ios:
|
|
1216
|
+
"game:ios:profile:import": {
|
|
1244
1217
|
"aliases": [],
|
|
1245
|
-
"args": {
|
|
1246
|
-
|
|
1218
|
+
"args": {
|
|
1219
|
+
"file": {
|
|
1220
|
+
"description": "Name of the ZIP file to import (must be in the same format as the export)",
|
|
1221
|
+
"name": "file",
|
|
1222
|
+
"required": true
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1225
|
+
"description": "Imports an Mobile Provisioning Profile to your ShipThis account",
|
|
1247
1226
|
"examples": [
|
|
1248
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1227
|
+
"<%= config.bin %> <%= command.id %> profile.zip"
|
|
1249
1228
|
],
|
|
1250
1229
|
"flags": {
|
|
1251
1230
|
"gameId": {
|
|
@@ -1255,11 +1234,17 @@
|
|
|
1255
1234
|
"hasDynamicHelp": false,
|
|
1256
1235
|
"multiple": false,
|
|
1257
1236
|
"type": "option"
|
|
1237
|
+
},
|
|
1238
|
+
"force": {
|
|
1239
|
+
"char": "f",
|
|
1240
|
+
"name": "force",
|
|
1241
|
+
"allowNo": false,
|
|
1242
|
+
"type": "boolean"
|
|
1258
1243
|
}
|
|
1259
1244
|
},
|
|
1260
1245
|
"hasDynamicHelp": false,
|
|
1261
1246
|
"hiddenAliases": [],
|
|
1262
|
-
"id": "game:ios:
|
|
1247
|
+
"id": "game:ios:profile:import",
|
|
1263
1248
|
"pluginAlias": "shipthis",
|
|
1264
1249
|
"pluginName": "shipthis",
|
|
1265
1250
|
"pluginType": "core",
|
|
@@ -1271,25 +1256,18 @@
|
|
|
1271
1256
|
"commands",
|
|
1272
1257
|
"game",
|
|
1273
1258
|
"ios",
|
|
1274
|
-
"
|
|
1275
|
-
"
|
|
1259
|
+
"profile",
|
|
1260
|
+
"import.js"
|
|
1276
1261
|
]
|
|
1277
1262
|
},
|
|
1278
|
-
"game:ios:
|
|
1263
|
+
"game:ios:profile:status": {
|
|
1279
1264
|
"aliases": [],
|
|
1280
1265
|
"args": {},
|
|
1281
|
-
"description": "
|
|
1266
|
+
"description": "Shows the Game iOS Mobile Provisioning Profile Status.",
|
|
1282
1267
|
"examples": [
|
|
1283
1268
|
"<%= config.bin %> <%= command.id %>"
|
|
1284
1269
|
],
|
|
1285
1270
|
"flags": {
|
|
1286
|
-
"quiet": {
|
|
1287
|
-
"char": "q",
|
|
1288
|
-
"description": "Avoid output except for interactions and errors",
|
|
1289
|
-
"name": "quiet",
|
|
1290
|
-
"allowNo": false,
|
|
1291
|
-
"type": "boolean"
|
|
1292
|
-
},
|
|
1293
1271
|
"gameId": {
|
|
1294
1272
|
"char": "g",
|
|
1295
1273
|
"description": "The ID of the game",
|
|
@@ -1298,16 +1276,16 @@
|
|
|
1298
1276
|
"multiple": false,
|
|
1299
1277
|
"type": "option"
|
|
1300
1278
|
},
|
|
1301
|
-
"
|
|
1279
|
+
"noAppleAuth": {
|
|
1302
1280
|
"char": "f",
|
|
1303
|
-
"name": "
|
|
1281
|
+
"name": "noAppleAuth",
|
|
1304
1282
|
"allowNo": false,
|
|
1305
1283
|
"type": "boolean"
|
|
1306
1284
|
}
|
|
1307
1285
|
},
|
|
1308
1286
|
"hasDynamicHelp": false,
|
|
1309
1287
|
"hiddenAliases": [],
|
|
1310
|
-
"id": "game:ios:
|
|
1288
|
+
"id": "game:ios:profile:status",
|
|
1311
1289
|
"pluginAlias": "shipthis",
|
|
1312
1290
|
"pluginName": "shipthis",
|
|
1313
1291
|
"pluginType": "core",
|
|
@@ -1319,25 +1297,18 @@
|
|
|
1319
1297
|
"commands",
|
|
1320
1298
|
"game",
|
|
1321
1299
|
"ios",
|
|
1322
|
-
"
|
|
1323
|
-
"
|
|
1300
|
+
"profile",
|
|
1301
|
+
"status.js"
|
|
1324
1302
|
]
|
|
1325
1303
|
},
|
|
1326
|
-
"game:ios:
|
|
1304
|
+
"game:ios:app:addTester": {
|
|
1327
1305
|
"aliases": [],
|
|
1328
1306
|
"args": {},
|
|
1329
|
-
"description": "
|
|
1307
|
+
"description": "Adds a test user to the game in App Store Connect.",
|
|
1330
1308
|
"examples": [
|
|
1331
1309
|
"<%= config.bin %> <%= command.id %>"
|
|
1332
1310
|
],
|
|
1333
1311
|
"flags": {
|
|
1334
|
-
"quiet": {
|
|
1335
|
-
"char": "q",
|
|
1336
|
-
"description": "Avoid output except for interactions and errors",
|
|
1337
|
-
"name": "quiet",
|
|
1338
|
-
"allowNo": false,
|
|
1339
|
-
"type": "boolean"
|
|
1340
|
-
},
|
|
1341
1312
|
"gameId": {
|
|
1342
1313
|
"char": "g",
|
|
1343
1314
|
"description": "The ID of the game",
|
|
@@ -1346,16 +1317,34 @@
|
|
|
1346
1317
|
"multiple": false,
|
|
1347
1318
|
"type": "option"
|
|
1348
1319
|
},
|
|
1349
|
-
"
|
|
1320
|
+
"email": {
|
|
1321
|
+
"char": "e",
|
|
1322
|
+
"description": "The email address of the tester",
|
|
1323
|
+
"name": "email",
|
|
1324
|
+
"hasDynamicHelp": false,
|
|
1325
|
+
"multiple": false,
|
|
1326
|
+
"type": "option"
|
|
1327
|
+
},
|
|
1328
|
+
"firstName": {
|
|
1350
1329
|
"char": "f",
|
|
1351
|
-
"
|
|
1352
|
-
"
|
|
1353
|
-
"
|
|
1330
|
+
"description": "The first name of the tester",
|
|
1331
|
+
"name": "firstName",
|
|
1332
|
+
"hasDynamicHelp": false,
|
|
1333
|
+
"multiple": false,
|
|
1334
|
+
"type": "option"
|
|
1335
|
+
},
|
|
1336
|
+
"lastName": {
|
|
1337
|
+
"char": "l",
|
|
1338
|
+
"description": "The last name of the tester",
|
|
1339
|
+
"name": "lastName",
|
|
1340
|
+
"hasDynamicHelp": false,
|
|
1341
|
+
"multiple": false,
|
|
1342
|
+
"type": "option"
|
|
1354
1343
|
}
|
|
1355
1344
|
},
|
|
1356
1345
|
"hasDynamicHelp": false,
|
|
1357
1346
|
"hiddenAliases": [],
|
|
1358
|
-
"id": "game:ios:
|
|
1347
|
+
"id": "game:ios:app:addTester",
|
|
1359
1348
|
"pluginAlias": "shipthis",
|
|
1360
1349
|
"pluginName": "shipthis",
|
|
1361
1350
|
"pluginType": "core",
|
|
@@ -1367,24 +1356,25 @@
|
|
|
1367
1356
|
"commands",
|
|
1368
1357
|
"game",
|
|
1369
1358
|
"ios",
|
|
1370
|
-
"
|
|
1371
|
-
"
|
|
1359
|
+
"app",
|
|
1360
|
+
"addTester.js"
|
|
1372
1361
|
]
|
|
1373
1362
|
},
|
|
1374
|
-
"game:ios:
|
|
1363
|
+
"game:ios:app:create": {
|
|
1375
1364
|
"aliases": [],
|
|
1376
|
-
"args": {
|
|
1377
|
-
|
|
1378
|
-
"description": "Name of the ZIP file to create",
|
|
1379
|
-
"name": "file",
|
|
1380
|
-
"required": true
|
|
1381
|
-
}
|
|
1382
|
-
},
|
|
1383
|
-
"description": "Saves the current Mobile Provisioning Profile to a ZIP file",
|
|
1365
|
+
"args": {},
|
|
1366
|
+
"description": "Creates an App and BundleId in the Apple Developer Portal.",
|
|
1384
1367
|
"examples": [
|
|
1385
|
-
"<%= config.bin %> <%= command.id %>
|
|
1368
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1386
1369
|
],
|
|
1387
1370
|
"flags": {
|
|
1371
|
+
"quiet": {
|
|
1372
|
+
"char": "q",
|
|
1373
|
+
"description": "Avoid output except for interactions and errors",
|
|
1374
|
+
"name": "quiet",
|
|
1375
|
+
"allowNo": false,
|
|
1376
|
+
"type": "boolean"
|
|
1377
|
+
},
|
|
1388
1378
|
"gameId": {
|
|
1389
1379
|
"char": "g",
|
|
1390
1380
|
"description": "The ID of the game",
|
|
@@ -1393,9 +1383,24 @@
|
|
|
1393
1383
|
"multiple": false,
|
|
1394
1384
|
"type": "option"
|
|
1395
1385
|
},
|
|
1386
|
+
"appName": {
|
|
1387
|
+
"char": "n",
|
|
1388
|
+
"description": "The name of the App in the Apple Developer Portal",
|
|
1389
|
+
"name": "appName",
|
|
1390
|
+
"hasDynamicHelp": false,
|
|
1391
|
+
"multiple": false,
|
|
1392
|
+
"type": "option"
|
|
1393
|
+
},
|
|
1394
|
+
"bundleId": {
|
|
1395
|
+
"char": "b",
|
|
1396
|
+
"description": "The BundleId in the Apple Developer Portal",
|
|
1397
|
+
"name": "bundleId",
|
|
1398
|
+
"hasDynamicHelp": false,
|
|
1399
|
+
"multiple": false,
|
|
1400
|
+
"type": "option"
|
|
1401
|
+
},
|
|
1396
1402
|
"force": {
|
|
1397
1403
|
"char": "f",
|
|
1398
|
-
"description": "Overwrite the file if it already exists",
|
|
1399
1404
|
"name": "force",
|
|
1400
1405
|
"allowNo": false,
|
|
1401
1406
|
"type": "boolean"
|
|
@@ -1403,7 +1408,7 @@
|
|
|
1403
1408
|
},
|
|
1404
1409
|
"hasDynamicHelp": false,
|
|
1405
1410
|
"hiddenAliases": [],
|
|
1406
|
-
"id": "game:ios:
|
|
1411
|
+
"id": "game:ios:app:create",
|
|
1407
1412
|
"pluginAlias": "shipthis",
|
|
1408
1413
|
"pluginName": "shipthis",
|
|
1409
1414
|
"pluginType": "core",
|
|
@@ -1415,22 +1420,16 @@
|
|
|
1415
1420
|
"commands",
|
|
1416
1421
|
"game",
|
|
1417
1422
|
"ios",
|
|
1418
|
-
"
|
|
1419
|
-
"
|
|
1423
|
+
"app",
|
|
1424
|
+
"create.js"
|
|
1420
1425
|
]
|
|
1421
1426
|
},
|
|
1422
|
-
"game:ios:
|
|
1427
|
+
"game:ios:app:status": {
|
|
1423
1428
|
"aliases": [],
|
|
1424
|
-
"args": {
|
|
1425
|
-
|
|
1426
|
-
"description": "Name of the ZIP file to import (must be in the same format as the export)",
|
|
1427
|
-
"name": "file",
|
|
1428
|
-
"required": true
|
|
1429
|
-
}
|
|
1430
|
-
},
|
|
1431
|
-
"description": "Imports an Mobile Provisioning Profile to your ShipThis account",
|
|
1429
|
+
"args": {},
|
|
1430
|
+
"description": "Shows the Game iOS App status. ",
|
|
1432
1431
|
"examples": [
|
|
1433
|
-
"<%= config.bin %> <%= command.id %>
|
|
1432
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1434
1433
|
],
|
|
1435
1434
|
"flags": {
|
|
1436
1435
|
"gameId": {
|
|
@@ -1440,17 +1439,11 @@
|
|
|
1440
1439
|
"hasDynamicHelp": false,
|
|
1441
1440
|
"multiple": false,
|
|
1442
1441
|
"type": "option"
|
|
1443
|
-
},
|
|
1444
|
-
"force": {
|
|
1445
|
-
"char": "f",
|
|
1446
|
-
"name": "force",
|
|
1447
|
-
"allowNo": false,
|
|
1448
|
-
"type": "boolean"
|
|
1449
1442
|
}
|
|
1450
1443
|
},
|
|
1451
1444
|
"hasDynamicHelp": false,
|
|
1452
1445
|
"hiddenAliases": [],
|
|
1453
|
-
"id": "game:ios:
|
|
1446
|
+
"id": "game:ios:app:status",
|
|
1454
1447
|
"pluginAlias": "shipthis",
|
|
1455
1448
|
"pluginName": "shipthis",
|
|
1456
1449
|
"pluginType": "core",
|
|
@@ -1462,18 +1455,25 @@
|
|
|
1462
1455
|
"commands",
|
|
1463
1456
|
"game",
|
|
1464
1457
|
"ios",
|
|
1465
|
-
"
|
|
1466
|
-
"
|
|
1458
|
+
"app",
|
|
1459
|
+
"status.js"
|
|
1467
1460
|
]
|
|
1468
1461
|
},
|
|
1469
|
-
"game:ios:
|
|
1462
|
+
"game:ios:app:sync": {
|
|
1470
1463
|
"aliases": [],
|
|
1471
1464
|
"args": {},
|
|
1472
|
-
"description": "
|
|
1465
|
+
"description": "Synchronies the Apple App \"BundleId\" with the capabilities from the local project.",
|
|
1473
1466
|
"examples": [
|
|
1474
1467
|
"<%= config.bin %> <%= command.id %>"
|
|
1475
1468
|
],
|
|
1476
1469
|
"flags": {
|
|
1470
|
+
"quiet": {
|
|
1471
|
+
"char": "q",
|
|
1472
|
+
"description": "Avoid output except for interactions and errors",
|
|
1473
|
+
"name": "quiet",
|
|
1474
|
+
"allowNo": false,
|
|
1475
|
+
"type": "boolean"
|
|
1476
|
+
},
|
|
1477
1477
|
"gameId": {
|
|
1478
1478
|
"char": "g",
|
|
1479
1479
|
"description": "The ID of the game",
|
|
@@ -1482,16 +1482,16 @@
|
|
|
1482
1482
|
"multiple": false,
|
|
1483
1483
|
"type": "option"
|
|
1484
1484
|
},
|
|
1485
|
-
"
|
|
1485
|
+
"force": {
|
|
1486
1486
|
"char": "f",
|
|
1487
|
-
"name": "
|
|
1487
|
+
"name": "force",
|
|
1488
1488
|
"allowNo": false,
|
|
1489
1489
|
"type": "boolean"
|
|
1490
1490
|
}
|
|
1491
1491
|
},
|
|
1492
1492
|
"hasDynamicHelp": false,
|
|
1493
1493
|
"hiddenAliases": [],
|
|
1494
|
-
"id": "game:ios:
|
|
1494
|
+
"id": "game:ios:app:sync",
|
|
1495
1495
|
"pluginAlias": "shipthis",
|
|
1496
1496
|
"pluginName": "shipthis",
|
|
1497
1497
|
"pluginType": "core",
|
|
@@ -1503,10 +1503,10 @@
|
|
|
1503
1503
|
"commands",
|
|
1504
1504
|
"game",
|
|
1505
1505
|
"ios",
|
|
1506
|
-
"
|
|
1507
|
-
"
|
|
1506
|
+
"app",
|
|
1507
|
+
"sync.js"
|
|
1508
1508
|
]
|
|
1509
1509
|
}
|
|
1510
1510
|
},
|
|
1511
|
-
"version": "0.0.
|
|
1511
|
+
"version": "0.0.26"
|
|
1512
1512
|
}
|