Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/commands/gxgames/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import { buildCommand, buildRouteMap } from "@stricli/core";

const gxgamesLinkCommand = buildCommand({
loader: async () => import("./link-impl"),
loader: async () => import("./commands/link-impl"),
parameters: {
positional: { kind: "tuple", parameters: [] },
flags: {
Expand All @@ -41,7 +41,7 @@ const gxgamesLinkCommand = buildCommand({
});

const gxgamesUploadCommand = buildCommand({
loader: async () => import("./upload-impl"),
loader: async () => import("./commands/upload-impl"),
parameters: {
positional: {
kind: "tuple",
Expand Down Expand Up @@ -71,7 +71,7 @@ const gxgamesUploadCommand = buildCommand({
});

const gxgamesMetaCommand = buildCommand({
loader: async () => import("./meta-impl"),
loader: async () => import("./commands/meta-impl"),
parameters: {
positional: { kind: "tuple", parameters: [] },
flags: {
Expand Down Expand Up @@ -124,7 +124,7 @@ const gxgamesMetaCommand = buildCommand({
});

const gxgamesPublishCommand = buildCommand({
loader: async () => import("./publish-impl"),
loader: async () => import("./commands/publish-impl"),
parameters: {
positional: { kind: "tuple", parameters: [] },
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
import * as p from "@clack/prompts";
import type { Context } from "~/context";
import { KnownError } from "~/error";
import { createAuthManager } from "./auth";
import { getApiClient } from "./client";
import { writeLink } from "./link";
import { Cache } from "~/cache";
import { createAuthManager } from "../auth";
import { getApiClient } from "../client";
import { writeLink } from "../link";

export default async function (
this: Context,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
import type { Context } from "~/context";
import * as p from "@clack/prompts";
import { KnownError } from "~/error";
import { readLink } from "./link";
import { createAuthManager } from "./auth";
import { getApiClient } from "./client";
import { Cache } from "~/cache";
import { readLink } from "../link";
import { createAuthManager } from "../auth";
import { getApiClient } from "../client";
import type {
GameDevUpdateGameRequestAgeRatingEnum,
GameDevUpdateGameRequestPlatformsEnum,
} from "./api/generated/data-contracts";
} from "../api/generated/data-contracts";

const AGE_RATING_OPTIONS: {
value: GameDevUpdateGameRequestAgeRatingEnum;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
import type { Context } from "~/context";
import * as p from "@clack/prompts";
import { KnownError } from "~/error";
import { readLink } from "./link";
import { createAuthManager } from "./auth";
import { getApiClient } from "./client";
import { Cache } from "~/cache";
import { readLink } from "../link";
import { createAuthManager } from "../auth";
import { getApiClient } from "../client";

export default async function (
this: Context,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@

import type { Context } from "~/context";
import * as p from "@clack/prompts";
import { getApiClient } from "./client";
import { createAuthManager } from "./auth";
import { getApiClient } from "../client";
import { createAuthManager } from "../auth";
import { KnownError } from "~/error";
import { readLink } from "./link";
import { Cache } from "~/cache";
import { readLink } from "../link";

export default async function (
this: Context,
Expand Down
Loading