Skip to content

Commit

Permalink
fix: avoid deep importing from dependency (#1932)
Browse files Browse the repository at this point in the history
fix: avoid deep requiring from dependency
  • Loading branch information
Uzlopak committed Nov 25, 2023
1 parent 558ec0e commit 9d1fdcd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/context.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import path from "path";
import merge from "deepmerge";

import type { EmitterWebhookEvent as WebhookEvent } from "@octokit/webhooks";
import type {
EmitterWebhookEvent as WebhookEvent,
EmitterWebhookEventName as WebhookEvents,
} from "@octokit/webhooks";
import type { Logger } from "pino";
import type { ProbotOctokit } from "./octokit/probot-octokit.js";
import type { EmitterWebhookEventName as WebhookEvents } from "@octokit/webhooks/dist-types/types.js";

export type MergeOptions = merge.Options;

Expand Down

0 comments on commit 9d1fdcd

Please sign in to comment.