shipthis 0.0.25 → 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 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
- You can discover **ShipThis in less than 5 minutes** via our [Quick Start Guide](https://shipthis.cc/docs/quickstart).
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
+
@@ -1117,14 +1117,21 @@
1117
1117
  "status.js"
1118
1118
  ]
1119
1119
  },
1120
- "game:ios:app:addTester": {
1120
+ "game:ios:profile:create": {
1121
1121
  "aliases": [],
1122
1122
  "args": {},
1123
- "description": "Adds a test user to the game in App Store Connect.",
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
- "email": {
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
- "description": "The first name of the tester",
1147
- "name": "firstName",
1148
- "hasDynamicHelp": false,
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:app:addTester",
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
- "app",
1176
- "addTester.js"
1164
+ "profile",
1165
+ "create.js"
1177
1166
  ]
1178
1167
  },
1179
- "game:ios:app:create": {
1168
+ "game:ios:profile:export": {
1180
1169
  "aliases": [],
1181
- "args": {},
1182
- "description": "Creates an App and BundleId in the Apple Developer Portal.",
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:app:create",
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
- "app",
1240
- "create.js"
1212
+ "profile",
1213
+ "export.js"
1241
1214
  ]
1242
1215
  },
1243
- "game:ios:app:status": {
1216
+ "game:ios:profile:import": {
1244
1217
  "aliases": [],
1245
- "args": {},
1246
- "description": "Shows the Game iOS App status. ",
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:app:status",
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
- "app",
1275
- "status.js"
1259
+ "profile",
1260
+ "import.js"
1276
1261
  ]
1277
1262
  },
1278
- "game:ios:app:sync": {
1263
+ "game:ios:profile:status": {
1279
1264
  "aliases": [],
1280
1265
  "args": {},
1281
- "description": "Synchronies the Apple App \"BundleId\" with the capabilities from the local project.",
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
- "force": {
1279
+ "noAppleAuth": {
1302
1280
  "char": "f",
1303
- "name": "force",
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:app:sync",
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
- "app",
1323
- "sync.js"
1300
+ "profile",
1301
+ "status.js"
1324
1302
  ]
1325
1303
  },
1326
- "game:ios:profile:create": {
1304
+ "game:ios:app:addTester": {
1327
1305
  "aliases": [],
1328
1306
  "args": {},
1329
- "description": "Creates a Mobile Provisioning Profile in the Apple Developer Portal.",
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
- "force": {
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
- "name": "force",
1352
- "allowNo": false,
1353
- "type": "boolean"
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:profile:create",
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
- "profile",
1371
- "create.js"
1359
+ "app",
1360
+ "addTester.js"
1372
1361
  ]
1373
1362
  },
1374
- "game:ios:profile:export": {
1363
+ "game:ios:app:create": {
1375
1364
  "aliases": [],
1376
- "args": {
1377
- "file": {
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 %> userProfile.zip"
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:profile:export",
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
- "profile",
1419
- "export.js"
1423
+ "app",
1424
+ "create.js"
1420
1425
  ]
1421
1426
  },
1422
- "game:ios:profile:import": {
1427
+ "game:ios:app:status": {
1423
1428
  "aliases": [],
1424
- "args": {
1425
- "file": {
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 %> profile.zip"
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:profile:import",
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
- "profile",
1466
- "import.js"
1458
+ "app",
1459
+ "status.js"
1467
1460
  ]
1468
1461
  },
1469
- "game:ios:profile:status": {
1462
+ "game:ios:app:sync": {
1470
1463
  "aliases": [],
1471
1464
  "args": {},
1472
- "description": "Shows the Game iOS Mobile Provisioning Profile Status.",
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
- "noAppleAuth": {
1485
+ "force": {
1486
1486
  "char": "f",
1487
- "name": "noAppleAuth",
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:profile:status",
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
- "profile",
1507
- "status.js"
1506
+ "app",
1507
+ "sync.js"
1508
1508
  ]
1509
1509
  }
1510
1510
  },
1511
- "version": "0.0.25"
1511
+ "version": "0.0.26"
1512
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.25",
4
+ "version": "0.0.26",
5
5
  "author": "Hello Invent Ltd",
6
6
  "bin": {
7
7
  "shipthis": "./bin/run.js"