shipthis
Version:
ShipThis manages building and uploading your Godot games to the App Store and Google Play.
40 lines (37 loc) • 1.03 kB
JavaScript
import open from 'open';
import { B as BaseAuthenticatedCommand, a0 as getSingleUseUrl } from '../index-BwnzoldS.js';
import 'node:fs';
import 'axios';
import 'crypto-js';
import 'uuid';
import 'luxon';
import 'node:path';
import '@oclif/core';
import '@expo/apple-utils/build/index.js';
import 'node:crypto';
import 'node:readline';
import 'node:url';
import 'readline-sync';
import 'isomorphic-git';
import 'deepmerge';
import 'ini';
import '@tanstack/react-query';
import 'react';
import 'fast-glob';
import 'yazl';
import 'socket.io-client';
import 'fullscreen-ink';
import 'ink';
class Dashboard extends BaseAuthenticatedCommand {
static args = {};
static description = "Opens the web-browser to your ShipThis dashboard";
static examples = ["<%= config.bin %> <%= command.id %>"];
static flags = {};
async run() {
const dashboardUrl = await getSingleUseUrl("/dashboard");
console.log(`Opening ${dashboardUrl}...`);
await open(dashboardUrl);
process.exit(0);
}
}
export { Dashboard as default };