UNPKG

shipthis

Version:

ShipThis manages building and uploading your Godot games to the App Store and Google Play.

74 lines (71 loc) 2.14 kB
import { jsx } from 'react/jsx-runtime'; import { render } from 'ink'; import { c as BaseGameCommand, C as CredentialsType, P as Platform } from '../../../../index-BwnzoldS.js'; import 'ink-spinner'; import 'node:crypto'; import 'node:fs'; import 'node:path'; import 'node:readline'; import 'node:url'; import 'readline-sync'; import 'luxon'; import 'axios'; import 'isomorphic-git'; import '@oclif/core'; import '@tanstack/react-query'; import 'react'; import 'crypto-js'; import 'uuid'; import 'fast-glob'; import 'yazl'; import 'socket.io-client'; import 'fullscreen-ink'; import 'string-length'; import 'strip-ansi'; import { P as ProjectCredentialsTable } from '../../../../ProjectCredentialsTable-BMKgv99h.js'; import 'open'; import '@inkjs/ui'; import '../../../../ejs-DirFZbza.js'; import 'marked'; import 'marked-terminal'; import 'qrcode'; import '../../../../index-hoHfGrjg.js'; import { C as Command } from '../../../../Command-DN1j3tjt.js'; import '@expo/apple-utils/build/index.js'; import 'deepmerge'; import 'ini'; import '../../../../useProjectCredentials-DxdwJCfU.js'; import '../../../../useAndroidServiceAccountTestResult-CwKeW0ED.js'; import '../../../../index-CJWMt1s-.js'; import '../../../../Table-FaNgpyeq.js'; import '../../../../Title-BCQtayg6.js'; import 'fs'; import 'path'; class GameAndroidKeyStoreStatus extends BaseGameCommand { static args = {}; static description = "Displays the status of the Android Keystore for a specific game."; static examples = [ "<%= config.bin %> <%= command.id %>", "<%= config.bin %> <%= command.id %> --gameId 0c179fc4" ]; static flags = { ...BaseGameCommand.flags }; async run() { const game = await this.getGame(); render( /* @__PURE__ */ jsx(Command, { command: this, children: /* @__PURE__ */ jsx( ProjectCredentialsTable, { credentialTypeName: "Android Keystore", queryProps: { platform: Platform.ANDROID, projectId: game.id, type: CredentialsType.CERTIFICATE } } ) }) ); } } export { GameAndroidKeyStoreStatus as default };