shipthis 0.0.8 → 0.0.20
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 +41 -830
- package/bin/readme.sh +15 -0
- package/bin/run.js +1 -1
- package/dist/commands/apple/apiKey/create.js +1 -1
- package/dist/commands/apple/apiKey/status.js +1 -1
- package/dist/commands/apple/certificate/create.js +1 -1
- package/dist/commands/apple/certificate/status.js +1 -1
- package/dist/commands/apple/login.js +3 -3
- package/dist/commands/apple/status.js +24 -9
- package/dist/commands/game/create.js +1 -1
- package/dist/commands/game/details.js +1 -1
- package/dist/commands/game/ios/app/create.js +1 -1
- package/dist/commands/game/ios/app/status.js +1 -1
- package/dist/commands/game/ios/app/sync.js +1 -1
- package/dist/commands/game/ios/profile/create.js +1 -1
- package/dist/commands/game/ios/profile/status.js +1 -1
- package/dist/commands/game/job/list.js +1 -1
- package/dist/commands/game/list.js +1 -1
- package/dist/commands/game/ship.js +1 -1
- package/dist/commands/game/status.js +1 -1
- package/dist/commands/game/wizard.js +3 -2
- package/dist/commands/status.js +1 -1
- package/dist/utils/help.js +14 -0
- package/docs/README.md +20 -0
- package/docs/apple/apiKey/create.md +26 -0
- package/docs/apple/apiKey/export.md +24 -0
- package/docs/apple/apiKey/import.md +24 -0
- package/docs/apple/apiKey/status.md +25 -0
- package/docs/apple/apiKey.md +110 -0
- package/docs/apple/certificate/create.md +26 -0
- package/docs/apple/certificate/export.md +24 -0
- package/docs/apple/certificate/import.md +24 -0
- package/docs/apple/certificate/status.md +25 -0
- package/docs/apple/certificate.md +110 -0
- package/docs/apple/login.md +30 -0
- package/docs/apple/status.md +21 -0
- package/docs/apple.md +48 -0
- package/docs/dashboard.md +18 -0
- package/docs/game/build/download.md +28 -0
- package/docs/game/build/list.md +31 -0
- package/docs/game/build.md +68 -0
- package/docs/game/create.md +23 -0
- package/docs/game/details.md +35 -0
- package/docs/game/export.md +26 -0
- package/docs/game/ios/app/addTester.md +24 -0
- package/docs/game/ios/app/create.md +25 -0
- package/docs/game/ios/app/status.md +21 -0
- package/docs/game/ios/app/sync.md +23 -0
- package/docs/game/ios/app.md +104 -0
- package/docs/game/ios/profile/create.md +23 -0
- package/docs/game/ios/profile/export.md +25 -0
- package/docs/game/ios/profile/import.md +25 -0
- package/docs/game/ios/profile/status.md +22 -0
- package/docs/game/ios/profile.md +106 -0
- package/docs/game/ios/status.md +23 -0
- package/docs/game/ios.md +247 -0
- package/docs/game/job/list.md +29 -0
- package/docs/game/job/status.md +30 -0
- package/docs/game/job.md +68 -0
- package/docs/game/list.md +26 -0
- package/docs/game/ship.md +21 -0
- package/docs/game/status.md +23 -0
- package/docs/game/wizard.md +23 -0
- package/docs/game.md +19 -0
- package/docs/help.md +21 -0
- package/docs/login.md +28 -0
- package/docs/status.md +18 -0
- package/oclif.manifest.json +155 -153
- package/package.json +17 -3
package/docs/login.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# login
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
Authenticate - will create a new account if one does not exist.
|
|
6
|
+
|
|
7
|
+
## Example
|
|
8
|
+
|
|
9
|
+
[](https://asciinema.org/a/sbE3KOpIzgh72lLVdZEXlQZFd)
|
|
10
|
+
|
|
11
|
+
## Help Output
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
USAGE
|
|
15
|
+
$ shipthis login [-f] [-e <value>]
|
|
16
|
+
|
|
17
|
+
FLAGS
|
|
18
|
+
-e, --email=<value> Your email address
|
|
19
|
+
-f, --force
|
|
20
|
+
|
|
21
|
+
DESCRIPTION
|
|
22
|
+
Authenticate - will create a new account if one does not exist.
|
|
23
|
+
|
|
24
|
+
EXAMPLES
|
|
25
|
+
$ shipthis login
|
|
26
|
+
|
|
27
|
+
$ shipthis login --force --email me@email.nowhere
|
|
28
|
+
```
|
package/docs/status.md
ADDED
package/oclif.manifest.json
CHANGED
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
},
|
|
110
110
|
"appleEmail": {
|
|
111
111
|
"char": "e",
|
|
112
|
-
"description": "Your Apple email address",
|
|
112
|
+
"description": "Your Apple Developer email address",
|
|
113
113
|
"name": "appleEmail",
|
|
114
114
|
"hasDynamicHelp": false,
|
|
115
115
|
"multiple": false,
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"apple:status": {
|
|
136
136
|
"aliases": [],
|
|
137
137
|
"args": {},
|
|
138
|
-
"description": "Shows the status of the Apple authentication and integration",
|
|
138
|
+
"description": "Shows the status of the Apple authentication and integration.",
|
|
139
139
|
"examples": [
|
|
140
140
|
"<%= config.bin %> <%= command.id %>"
|
|
141
141
|
],
|
|
@@ -147,6 +147,7 @@
|
|
|
147
147
|
"pluginName": "shipthis",
|
|
148
148
|
"pluginType": "core",
|
|
149
149
|
"strict": true,
|
|
150
|
+
"enableJsonFlag": false,
|
|
150
151
|
"isESM": true,
|
|
151
152
|
"relativePath": [
|
|
152
153
|
"dist",
|
|
@@ -158,7 +159,7 @@
|
|
|
158
159
|
"game:create": {
|
|
159
160
|
"aliases": [],
|
|
160
161
|
"args": {},
|
|
161
|
-
"description": "Create a new game",
|
|
162
|
+
"description": "Create a new game in ShipThis.",
|
|
162
163
|
"examples": [
|
|
163
164
|
"<%= config.bin %> <%= command.id %>"
|
|
164
165
|
],
|
|
@@ -204,7 +205,7 @@
|
|
|
204
205
|
"game:details": {
|
|
205
206
|
"aliases": [],
|
|
206
207
|
"args": {},
|
|
207
|
-
"description": "Shows and sets the details of a game.
|
|
208
|
+
"description": "Shows and sets the details of a game.",
|
|
208
209
|
"examples": [
|
|
209
210
|
"<%= config.bin %> <%= command.id %>",
|
|
210
211
|
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
|
|
@@ -333,7 +334,7 @@
|
|
|
333
334
|
"game:list": {
|
|
334
335
|
"aliases": [],
|
|
335
336
|
"args": {},
|
|
336
|
-
"description": "Shows a list of all your games",
|
|
337
|
+
"description": "Shows a list of all your games.",
|
|
337
338
|
"examples": [
|
|
338
339
|
"<%= config.bin %> <%= command.id %>"
|
|
339
340
|
],
|
|
@@ -403,7 +404,7 @@
|
|
|
403
404
|
"game:ship": {
|
|
404
405
|
"aliases": [],
|
|
405
406
|
"args": {},
|
|
406
|
-
"description": "Builds the app (for all platforms with valid credentials) and ships it to the stores",
|
|
407
|
+
"description": "Builds the app (for all platforms with valid credentials) and ships it to the stores.",
|
|
407
408
|
"examples": [
|
|
408
409
|
"<%= config.bin %> <%= command.id %>"
|
|
409
410
|
],
|
|
@@ -436,7 +437,7 @@
|
|
|
436
437
|
"game:status": {
|
|
437
438
|
"aliases": [],
|
|
438
439
|
"args": {},
|
|
439
|
-
"description": "Shows the
|
|
440
|
+
"description": "Shows the status of the current game.",
|
|
440
441
|
"examples": [
|
|
441
442
|
"<%= config.bin %> <%= command.id %>",
|
|
442
443
|
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
@@ -477,7 +478,7 @@
|
|
|
477
478
|
"flags": {
|
|
478
479
|
"forceStep": {
|
|
479
480
|
"char": "f",
|
|
480
|
-
"description": "Force a specific step to run.
|
|
481
|
+
"description": "Force a specific step to run.",
|
|
481
482
|
"name": "forceStep",
|
|
482
483
|
"hasDynamicHelp": false,
|
|
483
484
|
"multiple": false,
|
|
@@ -487,7 +488,8 @@
|
|
|
487
488
|
"char": "p",
|
|
488
489
|
"description": "The platform to run the wizard for",
|
|
489
490
|
"name": "platform",
|
|
490
|
-
"required":
|
|
491
|
+
"required": false,
|
|
492
|
+
"default": "ios",
|
|
491
493
|
"hasDynamicHelp": false,
|
|
492
494
|
"multiple": false,
|
|
493
495
|
"options": [
|
|
@@ -515,7 +517,7 @@
|
|
|
515
517
|
"apple:certificate:create": {
|
|
516
518
|
"aliases": [],
|
|
517
519
|
"args": {},
|
|
518
|
-
"description": "Creates an iOS Distribution Certificate in your Apple Developer account
|
|
520
|
+
"description": "Creates an iOS Distribution Certificate in your Apple Developer account.\nSaves the certificate with the private key to your ShipThis account",
|
|
519
521
|
"examples": [
|
|
520
522
|
"<%= config.bin %> <%= command.id %>",
|
|
521
523
|
"<%= config.bin %> <%= command.id %> --force"
|
|
@@ -631,7 +633,7 @@
|
|
|
631
633
|
"apple:certificate:status": {
|
|
632
634
|
"aliases": [],
|
|
633
635
|
"args": {},
|
|
634
|
-
"description": "Displays the status of the iOS Distribution certificates in your Apple and ShipThis accounts
|
|
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.",
|
|
635
637
|
"examples": [
|
|
636
638
|
"<%= config.bin %> <%= command.id %>",
|
|
637
639
|
"<%= config.bin %> <%= command.id %> --noAppleAuth"
|
|
@@ -661,10 +663,143 @@
|
|
|
661
663
|
"status.js"
|
|
662
664
|
]
|
|
663
665
|
},
|
|
666
|
+
"game:build:download": {
|
|
667
|
+
"aliases": [],
|
|
668
|
+
"args": {
|
|
669
|
+
"build_id": {
|
|
670
|
+
"description": "The ID of the build to download",
|
|
671
|
+
"name": "build_id",
|
|
672
|
+
"required": true
|
|
673
|
+
},
|
|
674
|
+
"file": {
|
|
675
|
+
"description": "Name of the file to output",
|
|
676
|
+
"name": "file",
|
|
677
|
+
"required": true
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"description": "Downloads the given build artifact to the specified file",
|
|
681
|
+
"examples": [
|
|
682
|
+
"<%= config.bin %> <%= command.id %> 7a3f5c92 output.ipa",
|
|
683
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 e4b9a3d7 output.apk"
|
|
684
|
+
],
|
|
685
|
+
"flags": {
|
|
686
|
+
"gameId": {
|
|
687
|
+
"char": "g",
|
|
688
|
+
"description": "The ID of the game",
|
|
689
|
+
"name": "gameId",
|
|
690
|
+
"hasDynamicHelp": false,
|
|
691
|
+
"multiple": false,
|
|
692
|
+
"type": "option"
|
|
693
|
+
},
|
|
694
|
+
"force": {
|
|
695
|
+
"char": "f",
|
|
696
|
+
"description": "Overwrite the file if it already exists",
|
|
697
|
+
"name": "force",
|
|
698
|
+
"allowNo": false,
|
|
699
|
+
"type": "boolean"
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"hasDynamicHelp": false,
|
|
703
|
+
"hiddenAliases": [],
|
|
704
|
+
"id": "game:build:download",
|
|
705
|
+
"pluginAlias": "shipthis",
|
|
706
|
+
"pluginName": "shipthis",
|
|
707
|
+
"pluginType": "core",
|
|
708
|
+
"strict": true,
|
|
709
|
+
"enableJsonFlag": false,
|
|
710
|
+
"isESM": true,
|
|
711
|
+
"relativePath": [
|
|
712
|
+
"dist",
|
|
713
|
+
"commands",
|
|
714
|
+
"game",
|
|
715
|
+
"build",
|
|
716
|
+
"download.js"
|
|
717
|
+
]
|
|
718
|
+
},
|
|
719
|
+
"game:build:list": {
|
|
720
|
+
"aliases": [],
|
|
721
|
+
"args": {},
|
|
722
|
+
"description": "Lists the builds for successful jobs of a game.",
|
|
723
|
+
"examples": [
|
|
724
|
+
"<%= config.bin %> <%= command.id %>",
|
|
725
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
|
|
726
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --pageSize 20 --pageNumber 1"
|
|
727
|
+
],
|
|
728
|
+
"flags": {
|
|
729
|
+
"gameId": {
|
|
730
|
+
"char": "g",
|
|
731
|
+
"description": "The ID of the game",
|
|
732
|
+
"name": "gameId",
|
|
733
|
+
"hasDynamicHelp": false,
|
|
734
|
+
"multiple": false,
|
|
735
|
+
"type": "option"
|
|
736
|
+
},
|
|
737
|
+
"pageNumber": {
|
|
738
|
+
"char": "p",
|
|
739
|
+
"description": "The page number to show (starts at 0)",
|
|
740
|
+
"name": "pageNumber",
|
|
741
|
+
"default": 0,
|
|
742
|
+
"hasDynamicHelp": false,
|
|
743
|
+
"multiple": false,
|
|
744
|
+
"type": "option"
|
|
745
|
+
},
|
|
746
|
+
"pageSize": {
|
|
747
|
+
"char": "s",
|
|
748
|
+
"description": "The number of items to show per page",
|
|
749
|
+
"name": "pageSize",
|
|
750
|
+
"default": 10,
|
|
751
|
+
"hasDynamicHelp": false,
|
|
752
|
+
"multiple": false,
|
|
753
|
+
"type": "option"
|
|
754
|
+
},
|
|
755
|
+
"orderBy": {
|
|
756
|
+
"char": "o",
|
|
757
|
+
"description": "The field to order by",
|
|
758
|
+
"name": "orderBy",
|
|
759
|
+
"default": "createdAt",
|
|
760
|
+
"hasDynamicHelp": false,
|
|
761
|
+
"multiple": false,
|
|
762
|
+
"options": [
|
|
763
|
+
"createdAt",
|
|
764
|
+
"updatedAt"
|
|
765
|
+
],
|
|
766
|
+
"type": "option"
|
|
767
|
+
},
|
|
768
|
+
"order": {
|
|
769
|
+
"char": "r",
|
|
770
|
+
"description": "The order to sort by",
|
|
771
|
+
"name": "order",
|
|
772
|
+
"default": "desc",
|
|
773
|
+
"hasDynamicHelp": false,
|
|
774
|
+
"multiple": false,
|
|
775
|
+
"options": [
|
|
776
|
+
"asc",
|
|
777
|
+
"desc"
|
|
778
|
+
],
|
|
779
|
+
"type": "option"
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
"hasDynamicHelp": false,
|
|
783
|
+
"hiddenAliases": [],
|
|
784
|
+
"id": "game:build:list",
|
|
785
|
+
"pluginAlias": "shipthis",
|
|
786
|
+
"pluginName": "shipthis",
|
|
787
|
+
"pluginType": "core",
|
|
788
|
+
"strict": true,
|
|
789
|
+
"enableJsonFlag": false,
|
|
790
|
+
"isESM": true,
|
|
791
|
+
"relativePath": [
|
|
792
|
+
"dist",
|
|
793
|
+
"commands",
|
|
794
|
+
"game",
|
|
795
|
+
"build",
|
|
796
|
+
"list.js"
|
|
797
|
+
]
|
|
798
|
+
},
|
|
664
799
|
"apple:apiKey:create": {
|
|
665
800
|
"aliases": [],
|
|
666
801
|
"args": {},
|
|
667
|
-
"description": "Creates an App Store Connect API Key in your Apple Developer account
|
|
802
|
+
"description": "Creates an App Store Connect API Key in your Apple Developer account.\nSaves the private key in your ShipThis account.",
|
|
668
803
|
"examples": [
|
|
669
804
|
"<%= config.bin %> <%= command.id %>",
|
|
670
805
|
"<%= config.bin %> <%= command.id %> --force"
|
|
@@ -780,7 +915,7 @@
|
|
|
780
915
|
"apple:apiKey:status": {
|
|
781
916
|
"aliases": [],
|
|
782
917
|
"args": {},
|
|
783
|
-
"description": "Displays the status of
|
|
918
|
+
"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.",
|
|
784
919
|
"examples": [
|
|
785
920
|
"<%= config.bin %> <%= command.id %>",
|
|
786
921
|
"<%= config.bin %> <%= command.id %> --noAppleAuth"
|
|
@@ -810,139 +945,6 @@
|
|
|
810
945
|
"status.js"
|
|
811
946
|
]
|
|
812
947
|
},
|
|
813
|
-
"game:build:download": {
|
|
814
|
-
"aliases": [],
|
|
815
|
-
"args": {
|
|
816
|
-
"build_id": {
|
|
817
|
-
"description": "The ID of the build to download",
|
|
818
|
-
"name": "build_id",
|
|
819
|
-
"required": true
|
|
820
|
-
},
|
|
821
|
-
"file": {
|
|
822
|
-
"description": "Name of the file to output",
|
|
823
|
-
"name": "file",
|
|
824
|
-
"required": true
|
|
825
|
-
}
|
|
826
|
-
},
|
|
827
|
-
"description": "Downloads the given build artifact to the specified file",
|
|
828
|
-
"examples": [
|
|
829
|
-
"<%= config.bin %> <%= command.id %> 7a3f5c92 output.ipa",
|
|
830
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 e4b9a3d7 output.apk"
|
|
831
|
-
],
|
|
832
|
-
"flags": {
|
|
833
|
-
"gameId": {
|
|
834
|
-
"char": "g",
|
|
835
|
-
"description": "The ID of the game",
|
|
836
|
-
"name": "gameId",
|
|
837
|
-
"hasDynamicHelp": false,
|
|
838
|
-
"multiple": false,
|
|
839
|
-
"type": "option"
|
|
840
|
-
},
|
|
841
|
-
"force": {
|
|
842
|
-
"char": "f",
|
|
843
|
-
"description": "Overwrite the file if it already exists",
|
|
844
|
-
"name": "force",
|
|
845
|
-
"allowNo": false,
|
|
846
|
-
"type": "boolean"
|
|
847
|
-
}
|
|
848
|
-
},
|
|
849
|
-
"hasDynamicHelp": false,
|
|
850
|
-
"hiddenAliases": [],
|
|
851
|
-
"id": "game:build:download",
|
|
852
|
-
"pluginAlias": "shipthis",
|
|
853
|
-
"pluginName": "shipthis",
|
|
854
|
-
"pluginType": "core",
|
|
855
|
-
"strict": true,
|
|
856
|
-
"enableJsonFlag": false,
|
|
857
|
-
"isESM": true,
|
|
858
|
-
"relativePath": [
|
|
859
|
-
"dist",
|
|
860
|
-
"commands",
|
|
861
|
-
"game",
|
|
862
|
-
"build",
|
|
863
|
-
"download.js"
|
|
864
|
-
]
|
|
865
|
-
},
|
|
866
|
-
"game:build:list": {
|
|
867
|
-
"aliases": [],
|
|
868
|
-
"args": {},
|
|
869
|
-
"description": "Lists the builds for successful jobs of a game.",
|
|
870
|
-
"examples": [
|
|
871
|
-
"<%= config.bin %> <%= command.id %>",
|
|
872
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
|
|
873
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --pageSize 20 --pageNumber 1"
|
|
874
|
-
],
|
|
875
|
-
"flags": {
|
|
876
|
-
"gameId": {
|
|
877
|
-
"char": "g",
|
|
878
|
-
"description": "The ID of the game",
|
|
879
|
-
"name": "gameId",
|
|
880
|
-
"hasDynamicHelp": false,
|
|
881
|
-
"multiple": false,
|
|
882
|
-
"type": "option"
|
|
883
|
-
},
|
|
884
|
-
"pageNumber": {
|
|
885
|
-
"char": "p",
|
|
886
|
-
"description": "The page number to show (starts at 0)",
|
|
887
|
-
"name": "pageNumber",
|
|
888
|
-
"default": 0,
|
|
889
|
-
"hasDynamicHelp": false,
|
|
890
|
-
"multiple": false,
|
|
891
|
-
"type": "option"
|
|
892
|
-
},
|
|
893
|
-
"pageSize": {
|
|
894
|
-
"char": "s",
|
|
895
|
-
"description": "The number of items to show per page",
|
|
896
|
-
"name": "pageSize",
|
|
897
|
-
"default": 10,
|
|
898
|
-
"hasDynamicHelp": false,
|
|
899
|
-
"multiple": false,
|
|
900
|
-
"type": "option"
|
|
901
|
-
},
|
|
902
|
-
"orderBy": {
|
|
903
|
-
"char": "o",
|
|
904
|
-
"description": "The field to order by",
|
|
905
|
-
"name": "orderBy",
|
|
906
|
-
"default": "createdAt",
|
|
907
|
-
"hasDynamicHelp": false,
|
|
908
|
-
"multiple": false,
|
|
909
|
-
"options": [
|
|
910
|
-
"createdAt",
|
|
911
|
-
"updatedAt"
|
|
912
|
-
],
|
|
913
|
-
"type": "option"
|
|
914
|
-
},
|
|
915
|
-
"order": {
|
|
916
|
-
"char": "r",
|
|
917
|
-
"description": "The order to sort by",
|
|
918
|
-
"name": "order",
|
|
919
|
-
"default": "desc",
|
|
920
|
-
"hasDynamicHelp": false,
|
|
921
|
-
"multiple": false,
|
|
922
|
-
"options": [
|
|
923
|
-
"asc",
|
|
924
|
-
"desc"
|
|
925
|
-
],
|
|
926
|
-
"type": "option"
|
|
927
|
-
}
|
|
928
|
-
},
|
|
929
|
-
"hasDynamicHelp": false,
|
|
930
|
-
"hiddenAliases": [],
|
|
931
|
-
"id": "game:build:list",
|
|
932
|
-
"pluginAlias": "shipthis",
|
|
933
|
-
"pluginName": "shipthis",
|
|
934
|
-
"pluginType": "core",
|
|
935
|
-
"strict": true,
|
|
936
|
-
"enableJsonFlag": false,
|
|
937
|
-
"isESM": true,
|
|
938
|
-
"relativePath": [
|
|
939
|
-
"dist",
|
|
940
|
-
"commands",
|
|
941
|
-
"game",
|
|
942
|
-
"build",
|
|
943
|
-
"list.js"
|
|
944
|
-
]
|
|
945
|
-
},
|
|
946
948
|
"game:ios:status": {
|
|
947
949
|
"aliases": [],
|
|
948
950
|
"args": {},
|
|
@@ -981,7 +983,7 @@
|
|
|
981
983
|
"game:job:list": {
|
|
982
984
|
"aliases": [],
|
|
983
985
|
"args": {},
|
|
984
|
-
"description": "Lists the jobs for a game.
|
|
986
|
+
"description": "Lists the jobs for a game.",
|
|
985
987
|
"examples": [
|
|
986
988
|
"<%= config.bin %> <%= command.id %>",
|
|
987
989
|
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
|
|
@@ -1177,7 +1179,7 @@
|
|
|
1177
1179
|
"game:ios:app:create": {
|
|
1178
1180
|
"aliases": [],
|
|
1179
1181
|
"args": {},
|
|
1180
|
-
"description": "Creates an App and BundleId in the Apple Developer Portal.
|
|
1182
|
+
"description": "Creates an App and BundleId in the Apple Developer Portal.",
|
|
1181
1183
|
"examples": [
|
|
1182
1184
|
"<%= config.bin %> <%= command.id %>"
|
|
1183
1185
|
],
|
|
@@ -1241,7 +1243,7 @@
|
|
|
1241
1243
|
"game:ios:app:status": {
|
|
1242
1244
|
"aliases": [],
|
|
1243
1245
|
"args": {},
|
|
1244
|
-
"description": "Shows the Game iOS App status.
|
|
1246
|
+
"description": "Shows the Game iOS App status. ",
|
|
1245
1247
|
"examples": [
|
|
1246
1248
|
"<%= config.bin %> <%= command.id %>"
|
|
1247
1249
|
],
|
|
@@ -1276,7 +1278,7 @@
|
|
|
1276
1278
|
"game:ios:app:sync": {
|
|
1277
1279
|
"aliases": [],
|
|
1278
1280
|
"args": {},
|
|
1279
|
-
"description": "Synchronies the Apple App \"BundleId\" with the capabilities from the local project.
|
|
1281
|
+
"description": "Synchronies the Apple App \"BundleId\" with the capabilities from the local project.",
|
|
1280
1282
|
"examples": [
|
|
1281
1283
|
"<%= config.bin %> <%= command.id %>"
|
|
1282
1284
|
],
|
|
@@ -1324,7 +1326,7 @@
|
|
|
1324
1326
|
"game:ios:profile:create": {
|
|
1325
1327
|
"aliases": [],
|
|
1326
1328
|
"args": {},
|
|
1327
|
-
"description": "Creates a Mobile Provisioning Profile in the Apple Developer Portal.
|
|
1329
|
+
"description": "Creates a Mobile Provisioning Profile in the Apple Developer Portal.",
|
|
1328
1330
|
"examples": [
|
|
1329
1331
|
"<%= config.bin %> <%= command.id %>"
|
|
1330
1332
|
],
|
|
@@ -1467,7 +1469,7 @@
|
|
|
1467
1469
|
"game:ios:profile:status": {
|
|
1468
1470
|
"aliases": [],
|
|
1469
1471
|
"args": {},
|
|
1470
|
-
"description": "Shows the Game iOS Mobile Provisioning Profile Status.
|
|
1472
|
+
"description": "Shows the Game iOS Mobile Provisioning Profile Status.",
|
|
1471
1473
|
"examples": [
|
|
1472
1474
|
"<%= config.bin %> <%= command.id %>"
|
|
1473
1475
|
],
|
|
@@ -1506,5 +1508,5 @@
|
|
|
1506
1508
|
]
|
|
1507
1509
|
}
|
|
1508
1510
|
},
|
|
1509
|
-
"version": "0.0.
|
|
1511
|
+
"version": "0.0.20"
|
|
1510
1512
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipthis",
|
|
3
3
|
"description": "Game Shipping Tool",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.20",
|
|
5
5
|
"author": "Hello Invent Ltd",
|
|
6
6
|
"bin": {
|
|
7
7
|
"shipthis": "./bin/run.js"
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"@oclif/prettier-config": "^0.2.1",
|
|
42
42
|
"@oclif/test": "^4",
|
|
43
43
|
"@types/chai": "^4",
|
|
44
|
+
"@types/ejs": "^3.1.5",
|
|
44
45
|
"@types/fs-extra": "^11.0.4",
|
|
45
46
|
"@types/ini": "^4.1.1",
|
|
46
47
|
"@types/jsonwebtoken": "^9.0.6",
|
|
@@ -54,6 +55,7 @@
|
|
|
54
55
|
"@types/tough-cookie": "^4.0.5",
|
|
55
56
|
"@types/yazl": "^2.4.5",
|
|
56
57
|
"chai": "^4",
|
|
58
|
+
"ejs": "^3.1.10",
|
|
57
59
|
"eslint": "^8",
|
|
58
60
|
"eslint-config-oclif": "^5",
|
|
59
61
|
"eslint-config-oclif-typescript": "^3",
|
|
@@ -73,6 +75,7 @@
|
|
|
73
75
|
"files": [
|
|
74
76
|
"/bin",
|
|
75
77
|
"/dist",
|
|
78
|
+
"/docs",
|
|
76
79
|
"/oclif.manifest.json"
|
|
77
80
|
],
|
|
78
81
|
"homepage": "https://shipthis.cc",
|
|
@@ -83,6 +86,7 @@
|
|
|
83
86
|
"main": "dist/index.js",
|
|
84
87
|
"type": "module",
|
|
85
88
|
"exports": [
|
|
89
|
+
"./dist/utils/help.js",
|
|
86
90
|
"./dist/commands/apple/apiKey/export.js",
|
|
87
91
|
"./dist/commands/apple/apiKey/status.js",
|
|
88
92
|
"./dist/commands/apple/apiKey/create.js",
|
|
@@ -121,15 +125,25 @@
|
|
|
121
125
|
"bin": "shipthis",
|
|
122
126
|
"dirname": "shipthis",
|
|
123
127
|
"commands": "./dist/commands",
|
|
128
|
+
"helpClass": "./dist/utils/help",
|
|
124
129
|
"plugins": [
|
|
125
130
|
"@oclif/plugin-help",
|
|
126
131
|
"@oclif/plugin-plugins"
|
|
127
132
|
],
|
|
128
133
|
"topicSeparator": " ",
|
|
129
134
|
"topics": {
|
|
135
|
+
"internal": {
|
|
136
|
+
"description": "Internal commands"
|
|
137
|
+
},
|
|
130
138
|
"apple": {
|
|
131
139
|
"description": "Commands related to Apple Developer Portal"
|
|
132
140
|
},
|
|
141
|
+
"apple:apiKey": {
|
|
142
|
+
"description": "Commands related to App Store Connect API Keys"
|
|
143
|
+
},
|
|
144
|
+
"apple:certificate": {
|
|
145
|
+
"description": "Commands related to App Store Certificates"
|
|
146
|
+
},
|
|
133
147
|
"game": {
|
|
134
148
|
"description": "Commands related to Game Management"
|
|
135
149
|
},
|
|
@@ -158,9 +172,9 @@
|
|
|
158
172
|
"lint": "eslint . --ext .ts",
|
|
159
173
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
160
174
|
"posttest": "npm run lint",
|
|
161
|
-
"prepack": "
|
|
175
|
+
"prepack": "npm run readme && oclif manifest",
|
|
162
176
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
163
|
-
"
|
|
177
|
+
"readme": "bin/dev.js internal readme docs/ -d 2 --notDryRun # does not overwrite existing files"
|
|
164
178
|
},
|
|
165
179
|
"types": "dist/index.d.ts"
|
|
166
180
|
}
|