Skip to content

Commit

Permalink
chore: fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
andyjessop committed Oct 8, 2024
1 parent 265485c commit 4f22342
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/wrangler/src/dev-registry/file-based-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ import {
} from "node:fs/promises";
import path from "node:path";
import * as util from "node:util";
import { FSWatcher, watch } from "chokidar";
import { watch } from "chokidar";
import { version as wranglerVersion } from "../../package.json";
import { getGlobalWranglerConfigPath } from "../global-wrangler-config-path";
import { logger } from "../logger";
import { BaseDevRegistry } from "./base-dev-registry";
import type { DevRegistry, WorkerDefinition, WorkerRegistry } from "./types";
import type { FSWatcher } from "chokidar";

export class FileBasedRegistry extends BaseDevRegistry implements DevRegistry {
private DEV_REGISTRY_PATH: string;
Expand Down

0 comments on commit 4f22342

Please sign in to comment.