Skip to content

Commit

Permalink
run check
Browse files Browse the repository at this point in the history
  • Loading branch information
emilwidlund committed Nov 21, 2024
1 parent 047c91e commit 519ceeb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions src/cli.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { Polar } from "@polar-sh/sdk";
import meow from "meow";
import open from "open";
import { createLemonClient } from "./lemon.js";
import { login } from "./oauth.js";
import { resolveOrganization } from "./organization.js";
import { createProduct } from "./product.js";
import { authenticationMessage } from "./ui/authentication.js";
import { successMessage } from "./ui/success.js";
import { createLemonClient } from "./lemon.js";
import { lemonAccessKeyPrompt } from "./prompts/lemonAccessKey.js";
import { serverPrompt } from "./prompts/server.js";
import { storePrompt } from "./prompts/store.js";
import { variantsPrompt } from "./prompts/variants.js";
import { serverPrompt } from "./prompts/server.js";
import open from "open";
import { authenticationMessage } from "./ui/authentication.js";
import { successMessage } from "./ui/success.js";

process.on("uncaughtException", (error) => {
console.error(error);
Expand Down
6 changes: 3 additions & 3 deletions src/lemon.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import {
lemonSqueezySetup,
getAuthenticatedUser,
listProducts,
listStores,
lemonSqueezySetup,
listDiscounts,
listFiles,
listProducts,
listStores,
listVariants,
} from "@lemonsqueezy/lemonsqueezy.js";

Expand Down
2 changes: 1 addition & 1 deletion src/product.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type { ListProducts, ListVariants } from "@lemonsqueezy/lemonsqueezy.js";
import type { Polar } from "@polar-sh/sdk";
import type {
BenefitLicenseKeyExpirationProperties,
Expand All @@ -12,7 +13,6 @@ import type {
ProductRecurringCreate,
Timeframe,
} from "@polar-sh/sdk/models/components";
import type { ListProducts, ListVariants } from "@lemonsqueezy/lemonsqueezy.js";

const resolveInterval = (
interval: ListVariants["data"][number]["attributes"]["interval"],
Expand Down

0 comments on commit 519ceeb

Please sign in to comment.