eas-cli 5.9.3 → 6.1.0
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 +81 -59
- package/build/analytics/AnalyticsManager.js +4 -4
- package/build/branch/queries.js +4 -4
- package/build/build/android/build.js +8 -9
- package/build/build/android/syncProjectConfiguration.d.ts +1 -3
- package/build/build/android/syncProjectConfiguration.js +3 -3
- package/build/build/android/version.js +3 -3
- package/build/build/build.d.ts +1 -1
- package/build/build/build.js +6 -6
- package/build/build/configure.js +3 -33
- package/build/build/context.d.ts +1 -1
- package/build/build/createContext.d.ts +2 -2
- package/build/build/createContext.js +3 -3
- package/build/build/graphql.js +1 -7
- package/build/build/ios/build.js +9 -10
- package/build/build/ios/syncProjectConfiguration.d.ts +1 -3
- package/build/build/ios/syncProjectConfiguration.js +3 -3
- package/build/build/ios/version.js +3 -3
- package/build/build/local.js +2 -2
- package/build/build/metadata.js +4 -4
- package/build/build/queries.js +1 -1
- package/build/build/runBuildAndSubmit.d.ts +1 -1
- package/build/build/runBuildAndSubmit.js +12 -13
- package/build/build/types.js +2 -2
- package/build/build/utils/devClient.js +1 -1
- package/build/build/utils/formatBuild.js +1 -1
- package/build/build/utils/printBuildInfo.js +1 -1
- package/build/build/utils/version.js +1 -1
- package/build/channel/print-utils.js +5 -5
- package/build/channel/queries.d.ts +1 -1
- package/build/channel/queries.js +2 -2
- package/build/commandUtils/EasCommand.js +4 -4
- package/build/commandUtils/builds.d.ts +14 -0
- package/build/commandUtils/builds.js +79 -0
- package/build/commandUtils/context/AnalyticsContextField.d.ts +1 -1
- package/build/commandUtils/context/DynamicProjectConfigContextField.d.ts +1 -1
- package/build/commandUtils/context/DynamicProjectConfigContextField.js +1 -1
- package/build/commandUtils/context/LoggedInContextField.d.ts +2 -2
- package/build/commandUtils/context/LoggedInContextField.js +2 -2
- package/build/commandUtils/context/MaybeLoggedInContextField.d.ts +2 -2
- package/build/commandUtils/context/MaybeLoggedInContextField.js +2 -2
- package/build/commandUtils/context/OptionalPrivateProjectConfigContextField.js +1 -1
- package/build/commandUtils/context/PrivateProjectConfigContextField.js +1 -1
- package/build/commandUtils/context/SessionManagementContextField.d.ts +1 -1
- package/build/commandUtils/context/VcsClientContextField.d.ts +1 -1
- package/build/commandUtils/context/VcsClientContextField.js +1 -1
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +2 -2
- package/build/commandUtils/gating/FeatureGateKey.js +1 -1
- package/build/commands/account/login.js +3 -3
- package/build/commands/account/logout.js +2 -2
- package/build/commands/account/view.js +4 -4
- package/build/commands/analytics.js +1 -1
- package/build/commands/branch/create.js +3 -3
- package/build/commands/branch/delete.js +3 -3
- package/build/commands/branch/list.js +3 -3
- package/build/commands/branch/publish.js +1 -1
- package/build/commands/branch/rename.js +3 -3
- package/build/commands/branch/view.js +3 -3
- package/build/commands/build/cancel.d.ts +7 -1
- package/build/commands/build/cancel.js +35 -56
- package/build/commands/build/configure.js +6 -11
- package/build/commands/build/delete.d.ts +24 -0
- package/build/commands/build/delete.js +115 -0
- package/build/commands/build/index.js +3 -3
- package/build/commands/build/inspect.js +3 -3
- package/build/commands/build/internal.js +3 -3
- package/build/commands/build/list.js +3 -3
- package/build/commands/build/resign.js +3 -3
- package/build/commands/build/run.js +3 -3
- package/build/commands/build/version/get.js +3 -3
- package/build/commands/build/version/set.js +4 -4
- package/build/commands/build/version/sync.js +3 -3
- package/build/commands/build/view.js +3 -3
- package/build/commands/channel/create.js +3 -3
- package/build/commands/channel/delete.js +3 -3
- package/build/commands/channel/edit.js +3 -3
- package/build/commands/channel/list.js +3 -3
- package/build/commands/channel/rollout.js +4 -5
- package/build/commands/channel/view.js +3 -3
- package/build/commands/config.js +3 -3
- package/build/commands/credentials.js +3 -3
- package/build/commands/device/create.js +2 -2
- package/build/commands/device/delete.js +3 -3
- package/build/commands/device/list.js +3 -3
- package/build/commands/device/rename.js +3 -3
- package/build/commands/device/view.js +3 -3
- package/build/commands/diagnostics.js +2 -2
- package/build/commands/metadata/lint.js +3 -3
- package/build/commands/metadata/pull.js +3 -3
- package/build/commands/metadata/push.js +3 -3
- package/build/commands/open.js +2 -3
- package/build/commands/project/info.js +2 -2
- package/build/commands/project/init.js +12 -12
- package/build/commands/secret/create.js +3 -3
- package/build/commands/secret/delete.js +3 -3
- package/build/commands/secret/list.js +2 -2
- package/build/commands/secret/push.js +3 -3
- package/build/commands/submit.js +3 -3
- package/build/commands/update/configure.js +4 -4
- package/build/commands/update/delete.js +3 -3
- package/build/commands/update/index.js +8 -5
- package/build/commands/update/list.js +3 -3
- package/build/commands/update/republish.js +3 -3
- package/build/commands/update/roll-back-to-embedded.js +5 -5
- package/build/commands/update/rollback.js +3 -3
- package/build/commands/update/view.js +3 -3
- package/build/commands/webhook/create.js +3 -3
- package/build/commands/webhook/delete.js +3 -3
- package/build/commands/webhook/list.js +3 -3
- package/build/commands/webhook/update.js +3 -3
- package/build/commands/webhook/view.js +3 -3
- package/build/credentials/android/AndroidCredentialsProvider.d.ts +1 -1
- package/build/credentials/android/AndroidCredentialsProvider.js +1 -1
- package/build/credentials/android/actions/RemoveKeystore.js +1 -1
- package/build/credentials/android/actions/SetUpBuildCredentials.js +2 -2
- package/build/credentials/android/actions/SetUpBuildCredentialsFromCredentialsJson.js +1 -1
- package/build/credentials/android/actions/SetUpGoogleServiceAccountKey.js +3 -3
- package/build/credentials/android/api/GraphqlClient.js +2 -2
- package/build/credentials/context.d.ts +3 -3
- package/build/credentials/context.js +3 -3
- package/build/credentials/credentialsJson/read.d.ts +1 -1
- package/build/credentials/credentialsJson/update.js +2 -2
- package/build/credentials/credentialsJson/utils.d.ts +1 -1
- package/build/credentials/ios/IosCredentialsProvider.d.ts +1 -1
- package/build/credentials/ios/IosCredentialsProvider.js +4 -4
- package/build/credentials/ios/actions/AscApiKeyUtils.js +2 -2
- package/build/credentials/ios/actions/AssignAscApiKey.d.ts +1 -1
- package/build/credentials/ios/actions/AssignAscApiKey.js +1 -1
- package/build/credentials/ios/actions/AssignPushKey.js +1 -1
- package/build/credentials/ios/actions/BuildCredentialsUtils.js +1 -1
- package/build/credentials/ios/actions/CreateAscApiKey.d.ts +1 -1
- package/build/credentials/ios/actions/CreateAscApiKey.js +1 -1
- package/build/credentials/ios/actions/CreateDistributionCertificate.js +1 -1
- package/build/credentials/ios/actions/CreateProvisioningProfile.js +2 -2
- package/build/credentials/ios/actions/CreatePushKey.js +1 -1
- package/build/credentials/ios/actions/DeviceUtils.js +1 -1
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +1 -1
- package/build/credentials/ios/actions/PushKeyUtils.js +1 -1
- package/build/credentials/ios/actions/RemoveAscApiKey.js +1 -1
- package/build/credentials/ios/actions/RemoveDistributionCertificate.js +2 -2
- package/build/credentials/ios/actions/RemovePushKey.js +1 -1
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +18 -4
- package/build/credentials/ios/actions/SetUpAscApiKey.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpAscApiKey.js +4 -4
- package/build/credentials/ios/actions/SetUpBuildCredentials.js +1 -1
- package/build/credentials/ios/actions/SetUpBuildCredentialsFromCredentialsJson.js +1 -1
- package/build/credentials/ios/actions/SetUpDistributionCertificate.js +3 -3
- package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.js +3 -3
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +4 -4
- package/build/credentials/ios/actions/SetUpPushKey.js +2 -2
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +2 -2
- package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.js +1 -1
- package/build/credentials/ios/api/GraphqlClient.d.ts +4 -4
- package/build/credentials/ios/api/GraphqlClient.js +4 -4
- package/build/credentials/ios/appstore/AppStoreApi.d.ts +2 -1
- package/build/credentials/ios/appstore/AppStoreApi.js +1 -1
- package/build/credentials/ios/appstore/CredentialsUtils.d.ts +1 -1
- package/build/credentials/ios/appstore/ascApiKey.d.ts +1 -1
- package/build/credentials/ios/appstore/ascApiKey.js +1 -1
- package/build/credentials/ios/appstore/authenticate.d.ts +1 -1
- package/build/credentials/ios/appstore/authenticate.js +2 -2
- package/build/credentials/ios/appstore/authenticateTypes.js +2 -2
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +1 -1
- package/build/credentials/ios/appstore/distributionCertificate.js +1 -1
- package/build/credentials/ios/appstore/ensureAppExists.js +2 -2
- package/build/credentials/ios/appstore/provisioningProfile.js +4 -4
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.js +2 -2
- package/build/credentials/ios/appstore/pushKey.js +1 -1
- package/build/credentials/ios/appstore/resolveCredentials.d.ts +1 -1
- package/build/credentials/ios/appstore/resolveCredentials.js +2 -2
- package/build/credentials/ios/credentials.d.ts +1 -1
- package/build/credentials/ios/credentials.js +1 -1
- package/build/credentials/manager/Actions.js +3 -3
- package/build/credentials/manager/IosActions.d.ts +1 -1
- package/build/credentials/manager/ManageAndroid.js +7 -7
- package/build/credentials/manager/ManageIos.js +5 -5
- package/build/credentials/manager/SelectAndroidBuildCredentials.js +2 -2
- package/build/credentials/manager/SelectPlatform.js +1 -1
- package/build/devices/actions/create/action.js +3 -3
- package/build/devices/actions/create/currentMachineMethod.js +1 -1
- package/build/devices/actions/create/inputMethod.js +1 -1
- package/build/devices/manager.d.ts +1 -1
- package/build/devices/manager.js +1 -1
- package/build/devices/queries.d.ts +1 -1
- package/build/devices/queries.js +1 -1
- package/build/eas-update/utils.d.ts +1 -0
- package/build/graphql/generated.d.ts +1592 -1534
- package/build/graphql/generated.js +75 -70
- package/build/graphql/queries/EnvironmentSecretsQuery.js +1 -1
- package/build/graphql/types/EnvironmentSecret.js +1 -1
- package/build/graphql/types/credentials/AndroidAppCredentials.js +1 -1
- package/build/graphql/types/credentials/AppleDistributionCertificate.js +1 -1
- package/build/graphql/types/credentials/ApplePushKey.js +1 -1
- package/build/graphql/types/credentials/IosAppCredentials.js +1 -1
- package/build/log.js +1 -1
- package/build/metadata/apple/tasks/index.d.ts +1 -1
- package/build/metadata/config/issue.js +1 -1
- package/build/metadata/config/resolve.d.ts +1 -1
- package/build/metadata/config/resolve.js +2 -3
- package/build/metadata/config/validate.js +1 -1
- package/build/metadata/download.js +3 -3
- package/build/metadata/upload.js +3 -3
- package/build/metadata/utils/ajv.js +2 -2
- package/build/platform.js +1 -1
- package/build/project/android/applicationId.d.ts +1 -1
- package/build/project/android/applicationId.js +1 -1
- package/build/project/android/gradle.js +1 -1
- package/build/project/android/versions.d.ts +1 -1
- package/build/project/ios/target.d.ts +1 -1
- package/build/project/ios/target.js +2 -2
- package/build/project/publish.d.ts +3 -1
- package/build/project/publish.js +21 -13
- package/build/rollout/actions/CreateRollout.js +2 -4
- package/build/rollout/actions/EndRollout.js +1 -1
- package/build/rollout/actions/ManageRollout.d.ts +2 -2
- package/build/rollout/actions/ManageRollout.js +3 -3
- package/build/rollout/actions/NonInteractiveRollout.d.ts +3 -3
- package/build/rollout/actions/NonInteractiveRollout.js +5 -5
- package/build/rollout/actions/RolloutMainMenu.d.ts +2 -2
- package/build/rollout/actions/RolloutMainMenu.js +4 -4
- package/build/rollout/utils.d.ts +1 -1
- package/build/rollout/utils.js +1 -1
- package/build/run/android/aapt.js +1 -1
- package/build/run/android/adb.js +1 -1
- package/build/run/android/emulator.js +2 -2
- package/build/run/ios/simulator.js +1 -1
- package/build/run/ios/systemRequirements.js +2 -2
- package/build/run/run.js +1 -1
- package/build/submit/ArchiveSource.js +3 -3
- package/build/submit/BaseSubmitter.d.ts +2 -2
- package/build/submit/BaseSubmitter.js +1 -1
- package/build/submit/android/AndroidSubmitCommand.js +2 -2
- package/build/submit/android/AndroidSubmitter.d.ts +1 -1
- package/build/submit/android/AndroidSubmitter.js +1 -1
- package/build/submit/android/ServiceAccountSource.js +1 -1
- package/build/submit/commons.js +1 -1
- package/build/submit/ios/AppProduce.js +1 -1
- package/build/submit/ios/AppSpecificPasswordSource.js +1 -1
- package/build/submit/ios/AscApiKeySource.js +1 -1
- package/build/submit/ios/IosSubmitCommand.js +4 -4
- package/build/submit/ios/IosSubmitter.d.ts +2 -2
- package/build/submit/ios/IosSubmitter.js +2 -2
- package/build/submit/submit.d.ts +1 -1
- package/build/submit/submit.js +4 -4
- package/build/submit/utils/logs.js +1 -1
- package/build/update/android/UpdatesModule.d.ts +1 -2
- package/build/update/android/UpdatesModule.js +3 -5
- package/build/update/configure.d.ts +1 -6
- package/build/update/configure.js +8 -46
- package/build/update/ios/UpdatesModule.d.ts +1 -2
- package/build/update/ios/UpdatesModule.js +2 -4
- package/build/update/queries.js +1 -1
- package/build/user/SessionManager.js +3 -3
- package/build/user/actions.d.ts +1 -1
- package/build/user/fetchSessionSecretAndSsoUser.js +1 -1
- package/build/user/fetchSessionSecretAndUser.js +1 -1
- package/build/utils/download.js +3 -3
- package/build/utils/expoCli.js +1 -1
- package/build/utils/progress.js +1 -1
- package/build/utils/queries.js +1 -1
- package/build/utils/relay.js +2 -2
- package/build/vcs/clients/git.d.ts +1 -0
- package/build/vcs/clients/git.js +3 -0
- package/build/vcs/clients/gitNoCommit.js +1 -1
- package/build/vcs/clients/noVcs.d.ts +1 -0
- package/build/vcs/clients/noVcs.js +3 -0
- package/build/vcs/vcs.d.ts +5 -0
- package/oclif.manifest.json +70 -1
- package/package.json +46 -43
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "6.1.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -533,6 +533,27 @@
|
|
|
533
533
|
"type": "boolean",
|
|
534
534
|
"description": "Run the command in non-interactive mode.",
|
|
535
535
|
"allowNo": false
|
|
536
|
+
},
|
|
537
|
+
"platform": {
|
|
538
|
+
"name": "platform",
|
|
539
|
+
"type": "option",
|
|
540
|
+
"char": "p",
|
|
541
|
+
"description": "Filter builds by the platform if build ID is not provided",
|
|
542
|
+
"helpValue": "(android|ios|all)",
|
|
543
|
+
"multiple": false,
|
|
544
|
+
"options": [
|
|
545
|
+
"android",
|
|
546
|
+
"ios",
|
|
547
|
+
"all"
|
|
548
|
+
]
|
|
549
|
+
},
|
|
550
|
+
"profile": {
|
|
551
|
+
"name": "profile",
|
|
552
|
+
"type": "option",
|
|
553
|
+
"char": "e",
|
|
554
|
+
"description": "Filter builds by build profile if build ID is not provided",
|
|
555
|
+
"helpValue": "PROFILE_NAME",
|
|
556
|
+
"multiple": false
|
|
536
557
|
}
|
|
537
558
|
},
|
|
538
559
|
"args": {
|
|
@@ -576,6 +597,54 @@
|
|
|
576
597
|
"vcsClient": {}
|
|
577
598
|
}
|
|
578
599
|
},
|
|
600
|
+
"build:delete": {
|
|
601
|
+
"id": "build:delete",
|
|
602
|
+
"description": "delete a build",
|
|
603
|
+
"strict": true,
|
|
604
|
+
"pluginName": "eas-cli",
|
|
605
|
+
"pluginAlias": "eas-cli",
|
|
606
|
+
"pluginType": "core",
|
|
607
|
+
"aliases": [],
|
|
608
|
+
"flags": {
|
|
609
|
+
"non-interactive": {
|
|
610
|
+
"name": "non-interactive",
|
|
611
|
+
"type": "boolean",
|
|
612
|
+
"description": "Run the command in non-interactive mode.",
|
|
613
|
+
"allowNo": false
|
|
614
|
+
},
|
|
615
|
+
"platform": {
|
|
616
|
+
"name": "platform",
|
|
617
|
+
"type": "option",
|
|
618
|
+
"char": "p",
|
|
619
|
+
"description": "Filter builds by the platform if build ID is not provided",
|
|
620
|
+
"helpValue": "(android|ios|all)",
|
|
621
|
+
"multiple": false,
|
|
622
|
+
"options": [
|
|
623
|
+
"android",
|
|
624
|
+
"ios",
|
|
625
|
+
"all"
|
|
626
|
+
]
|
|
627
|
+
},
|
|
628
|
+
"profile": {
|
|
629
|
+
"name": "profile",
|
|
630
|
+
"type": "option",
|
|
631
|
+
"char": "e",
|
|
632
|
+
"description": "Filter builds by build profile if build ID is not provided",
|
|
633
|
+
"helpValue": "PROFILE_NAME",
|
|
634
|
+
"multiple": false
|
|
635
|
+
}
|
|
636
|
+
},
|
|
637
|
+
"args": {
|
|
638
|
+
"BUILD_ID": {
|
|
639
|
+
"name": "BUILD_ID"
|
|
640
|
+
}
|
|
641
|
+
},
|
|
642
|
+
"contextDefinition": {
|
|
643
|
+
"loggedIn": {},
|
|
644
|
+
"privateProjectConfig": {},
|
|
645
|
+
"vcsClient": {}
|
|
646
|
+
}
|
|
647
|
+
},
|
|
579
648
|
"build": {
|
|
580
649
|
"id": "build",
|
|
581
650
|
"description": "start a build",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "6.1.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@expo/apple-utils": "1.3.2",
|
|
12
12
|
"@expo/code-signing-certificates": "0.0.5",
|
|
13
|
-
"@expo/config": "8.
|
|
14
|
-
"@expo/config-plugins": "7.
|
|
15
|
-
"@expo/config-types": "
|
|
16
|
-
"@expo/eas-build-job": "1.0.
|
|
17
|
-
"@expo/eas-json": "
|
|
13
|
+
"@expo/config": "8.5.4",
|
|
14
|
+
"@expo/config-plugins": "7.8.4",
|
|
15
|
+
"@expo/config-types": "50.0.0",
|
|
16
|
+
"@expo/eas-build-job": "1.0.59",
|
|
17
|
+
"@expo/eas-json": "6.1.0",
|
|
18
18
|
"@expo/json-file": "8.2.37",
|
|
19
19
|
"@expo/multipart-body-parser": "1.1.0",
|
|
20
20
|
"@expo/osascript": "2.0.33",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@expo/plist": "0.0.20",
|
|
24
24
|
"@expo/plugin-help": "5.1.23",
|
|
25
25
|
"@expo/plugin-warn-if-update-available": "2.5.1",
|
|
26
|
-
"@expo/prebuild-config": "6.
|
|
26
|
+
"@expo/prebuild-config": "6.7.3",
|
|
27
27
|
"@expo/results": "1.0.0",
|
|
28
28
|
"@expo/rudder-sdk-node": "1.1.1",
|
|
29
29
|
"@expo/spawn-async": "1.7.0",
|
|
@@ -38,26 +38,27 @@
|
|
|
38
38
|
"ajv-formats": "2.1.1",
|
|
39
39
|
"better-opn": "3.0.2",
|
|
40
40
|
"chalk": "4.1.2",
|
|
41
|
-
"cli-progress": "3.
|
|
41
|
+
"cli-progress": "3.12.0",
|
|
42
42
|
"dateformat": "4.6.3",
|
|
43
|
-
"dotenv": "16.
|
|
43
|
+
"dotenv": "16.3.1",
|
|
44
44
|
"env-paths": "2.2.0",
|
|
45
|
-
"envinfo": "7.
|
|
45
|
+
"envinfo": "7.11.0",
|
|
46
46
|
"fast-deep-equal": "3.1.3",
|
|
47
|
-
"fast-glob": "3.2
|
|
47
|
+
"fast-glob": "3.3.2",
|
|
48
48
|
"figures": "3.2.0",
|
|
49
49
|
"form-data": "4.0.0",
|
|
50
|
-
"fs-extra": "
|
|
50
|
+
"fs-extra": "11.2.0",
|
|
51
51
|
"getenv": "1.0.0",
|
|
52
52
|
"gradle-to-js": "2.0.1",
|
|
53
53
|
"graphql": "16.8.1",
|
|
54
54
|
"graphql-tag": "2.12.6",
|
|
55
55
|
"https-proxy-agent": "5.0.1",
|
|
56
|
-
"ignore": "5.
|
|
56
|
+
"ignore": "5.3.0",
|
|
57
57
|
"indent-string": "4.0.0",
|
|
58
58
|
"jks-js": "1.1.0",
|
|
59
|
-
"joi": "17.
|
|
60
|
-
"
|
|
59
|
+
"joi": "17.11.0",
|
|
60
|
+
"jsonwebtoken": "9.0.0",
|
|
61
|
+
"keychain": "1.5.0",
|
|
61
62
|
"log-symbols": "4.1.0",
|
|
62
63
|
"mime": "3.0.0",
|
|
63
64
|
"minimatch": "5.1.2",
|
|
@@ -67,58 +68,59 @@
|
|
|
67
68
|
"nullthrows": "1.1.1",
|
|
68
69
|
"ora": "5.1.0",
|
|
69
70
|
"pkg-dir": "4.2.0",
|
|
70
|
-
"pngjs": "
|
|
71
|
+
"pngjs": "7.0.0",
|
|
71
72
|
"promise-limit": "2.7.0",
|
|
72
73
|
"promise-retry": "2.0.1",
|
|
73
74
|
"prompts": "2.4.2",
|
|
74
75
|
"qrcode-terminal": "0.12.0",
|
|
75
76
|
"resolve-from": "5.0.0",
|
|
76
|
-
"semver": "7.5.
|
|
77
|
+
"semver": "7.5.4",
|
|
77
78
|
"slash": "3.0.0",
|
|
78
|
-
"tar": "6.
|
|
79
|
+
"tar": "6.2.0",
|
|
79
80
|
"terminal-link": "2.1.1",
|
|
80
|
-
"tslib": "2.
|
|
81
|
-
"turndown": "7.1.
|
|
81
|
+
"tslib": "2.6.2",
|
|
82
|
+
"turndown": "7.1.2",
|
|
82
83
|
"untildify": "4.0.0",
|
|
83
|
-
"uuid": "9.0.
|
|
84
|
+
"uuid": "9.0.1",
|
|
84
85
|
"wrap-ansi": "7.0.0"
|
|
85
86
|
},
|
|
86
87
|
"devDependencies": {
|
|
87
|
-
"@graphql-codegen/cli": "
|
|
88
|
-
"@graphql-codegen/introspection": "
|
|
89
|
-
"@graphql-codegen/typescript": "
|
|
90
|
-
"@graphql-codegen/typescript-operations": "
|
|
91
|
-
"@types/cli-progress": "3.11.
|
|
88
|
+
"@graphql-codegen/cli": "5.0.0",
|
|
89
|
+
"@graphql-codegen/introspection": "4.0.0",
|
|
90
|
+
"@graphql-codegen/typescript": "4.0.1",
|
|
91
|
+
"@graphql-codegen/typescript-operations": "4.0.1",
|
|
92
|
+
"@types/cli-progress": "3.11.5",
|
|
92
93
|
"@types/dateformat": "3.0.1",
|
|
93
|
-
"@types/envinfo": "7.8.
|
|
94
|
+
"@types/envinfo": "7.8.3",
|
|
94
95
|
"@types/express": "4.17.15",
|
|
95
|
-
"@types/fs-extra": "
|
|
96
|
+
"@types/fs-extra": "11.0.4",
|
|
96
97
|
"@types/getenv": "^1.0.0",
|
|
98
|
+
"@types/jsonwebtoken": "8.5.1",
|
|
97
99
|
"@types/mime": "3.0.1",
|
|
98
100
|
"@types/node-fetch": "2.6.2",
|
|
99
101
|
"@types/node-forge": "1.3.1",
|
|
100
|
-
"@types/pngjs": "6.0.
|
|
102
|
+
"@types/pngjs": "6.0.4",
|
|
101
103
|
"@types/promise-retry": "1.1.3",
|
|
102
104
|
"@types/prompts": "2.4.2",
|
|
103
|
-
"@types/semver": "7.
|
|
104
|
-
"@types/tar": "6.1.
|
|
105
|
+
"@types/semver": "7.5.6",
|
|
106
|
+
"@types/tar": "6.1.10",
|
|
105
107
|
"@types/tough-cookie": "4.0.2",
|
|
106
|
-
"@types/uuid": "9.0.
|
|
108
|
+
"@types/uuid": "9.0.7",
|
|
107
109
|
"@types/wrap-ansi": "3.0.0",
|
|
108
110
|
"axios": "0.27.2",
|
|
109
111
|
"eslint-plugin-graphql": "4.0.0",
|
|
110
112
|
"express": "4.18.2",
|
|
111
113
|
"memfs": "3.4.13",
|
|
112
114
|
"mockdate": "3.0.5",
|
|
113
|
-
"nock": "13.
|
|
115
|
+
"nock": "13.4.0",
|
|
114
116
|
"rimraf": "3.0.2",
|
|
115
|
-
"ts-deepmerge": "
|
|
117
|
+
"ts-deepmerge": "6.2.0",
|
|
116
118
|
"ts-mockito": "2.6.1",
|
|
117
|
-
"ts-node": "10.9.
|
|
118
|
-
"typescript": "
|
|
119
|
+
"ts-node": "10.9.2",
|
|
120
|
+
"typescript": "5.3.3"
|
|
119
121
|
},
|
|
120
122
|
"engines": {
|
|
121
|
-
"node": ">=
|
|
123
|
+
"node": ">=16.0.0"
|
|
122
124
|
},
|
|
123
125
|
"files": [
|
|
124
126
|
"/bin",
|
|
@@ -204,20 +206,21 @@
|
|
|
204
206
|
"scripts": {
|
|
205
207
|
"postpack": "rimraf oclif.manifest.json",
|
|
206
208
|
"prepack": "yarn rebuild && node ./scripts/prepack.js",
|
|
207
|
-
"rebuild": "rimraf build && yarn build
|
|
209
|
+
"rebuild": "rimraf build && yarn build",
|
|
208
210
|
"pretarball-ci": "./scripts/pretarball-ci.sh",
|
|
209
211
|
"build": "tsc --project tsconfig.build.json",
|
|
210
|
-
"build-
|
|
212
|
+
"build-allow-unused": "tsc --project tsconfig.allowUnused.json",
|
|
211
213
|
"watch": "yarn build --watch --preserveWatchOutput",
|
|
212
|
-
"
|
|
214
|
+
"watch-allow-unused": "yarn build-allow-unused --watch --preserveWatchOutput",
|
|
215
|
+
"typecheck": "tsc",
|
|
213
216
|
"test": "jest",
|
|
214
217
|
"version": "yarn oclif readme && node scripts/patch-readme && git add README.md",
|
|
215
218
|
"generate-graphql-code": "graphql-codegen --config graphql-codegen.yml",
|
|
216
219
|
"clean": "rimraf dist build tmp node_modules yarn-error.log"
|
|
217
220
|
},
|
|
218
221
|
"volta": {
|
|
219
|
-
"node": "
|
|
220
|
-
"yarn": "1.22.
|
|
222
|
+
"node": "20.11.0",
|
|
223
|
+
"yarn": "1.22.21"
|
|
221
224
|
},
|
|
222
|
-
"gitHead": "
|
|
225
|
+
"gitHead": "bbebe90876a7106a53f3d7d0dfecf9818cc74812"
|
|
223
226
|
}
|