shipthis 0.1.15 → 0.1.17
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/LICENSE +21 -0
- package/README.md +14 -5
- package/assets/markdown/android-success.md +1 -1
- package/assets/markdown/create-or-import-keystore.md +1 -1
- package/assets/markdown/ship-failure.md +1 -0
- package/assets/markdown/ship-success.md +1 -1
- package/dist/{AppleBundleIdDetails-DxWVnxa5.js → AppleBundleIdDetails-D41xptO8.js} +1 -1
- package/dist/{Command-zfJ7qIJI.js → Command-DdJBwDHu.js} +18 -5
- package/dist/{CommandGame-DVsNreSF.js → CommandGame-ClEQvI36.js} +1 -1
- package/dist/{Create-DdF29mIS.js → Create-C-7pvYVd.js} +1 -1
- package/dist/{Import-D8ik724M.js → Import-BfcHPxoi.js} +1 -1
- package/dist/{JobProgress-D1Pe4YJc.js → JobProgress-CICU69cf.js} +2 -2
- package/dist/{JobStatusTable-D-daiV-I.js → JobStatusTable-CpPlQBqR.js} +2 -2
- package/dist/commands/apple/apiKey/create.js +1 -1
- package/dist/commands/apple/apiKey/export.js +1 -1
- package/dist/commands/apple/apiKey/import.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/export.js +1 -1
- package/dist/commands/apple/certificate/import.js +1 -1
- package/dist/commands/apple/certificate/status.js +1 -1
- package/dist/commands/apple/status.js +1 -1
- package/dist/commands/game/android/apiKey/connect.js +3 -3
- package/dist/commands/game/android/apiKey/create.js +3 -3
- package/dist/commands/game/android/apiKey/export.js +1 -1
- package/dist/commands/game/android/apiKey/import.js +1 -1
- package/dist/commands/game/android/apiKey/status.js +1 -1
- package/dist/commands/game/android/keyStore/create.js +3 -3
- package/dist/commands/game/android/keyStore/export.js +1 -1
- package/dist/commands/game/android/keyStore/import.js +3 -3
- package/dist/commands/game/android/keyStore/status.js +1 -1
- package/dist/commands/game/android/status.js +1 -1
- package/dist/commands/game/build/download.js +1 -1
- package/dist/commands/game/build/list.js +2 -2
- package/dist/commands/game/details.js +1 -1
- package/dist/commands/game/ios/app/addTester.js +1 -1
- package/dist/commands/game/ios/app/create.js +1 -1
- package/dist/commands/game/ios/app/status.js +2 -2
- 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/export.js +1 -1
- package/dist/commands/game/ios/profile/import.js +1 -1
- package/dist/commands/game/ios/profile/status.js +1 -1
- package/dist/commands/game/ios/status.js +2 -2
- package/dist/commands/game/job/list.js +1 -1
- package/dist/commands/game/job/status.js +3 -3
- package/dist/commands/game/list.js +1 -1
- package/dist/commands/game/ship.js +5 -5
- package/dist/commands/game/status.js +1 -1
- package/dist/commands/game/wizard.js +74 -11
- package/dist/commands/status.js +1 -1
- package/dist/{index-BVvcTBnj.js → index-DlvM24jQ.js} +1 -1
- package/dist/{index-Cx_2qTdS.js → index-_Lan5Hud.js} +1 -1
- package/dist/{useJobWatching-DS0qHqPA.js → useJobWatching-W6FYJEPP.js} +1 -1
- package/docs/assets/logo_dark.svg +42 -0
- package/docs/assets/logo_light.svg +42 -0
- package/docs/assets/ship-outputx0.8.gif +0 -0
- package/npm-shrinkwrap.json +2 -2
- package/oclif.manifest.json +37 -37
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipthis",
|
|
3
3
|
"description": "ShipThis manages building and uploading your Godot games to the App Store and Google Play.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.17",
|
|
5
5
|
"author": "Hello Invent Ltd",
|
|
6
6
|
"bin": {
|
|
7
7
|
"shipthis": "./bin/run.js"
|
|
8
8
|
},
|
|
9
|
-
"bugs": "https://
|
|
9
|
+
"bugs": "https://github.com/shipth-is/cli/issues",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@expo/apple-utils": "2.0.3",
|
|
12
12
|
"@expo/json-file": "^8.3.3",
|
|
@@ -201,7 +201,7 @@
|
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
203
|
},
|
|
204
|
-
"repository": "
|
|
204
|
+
"repository": "github:shipth-is/cli",
|
|
205
205
|
"scripts": {
|
|
206
206
|
"build-original": "shx rm -rf dist && tsc -b",
|
|
207
207
|
"build-tsc-alias": "shx rm -rf dist && npx tsc --build && npx tsc-alias -p tsconfig.json",
|