Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CarmenPopoviciu committed Jul 31, 2024
1 parent 34fecea commit 33c7761
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/wrangler/src/__tests__/deploy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4363,7 +4363,7 @@ addEventListener('fetch', event => {});`
});
writeWorkerSource();
mockUploadWorkerRequest({
expectedMainModule: "no-op-worker.js",
expectedMainModule: "no-op-assets-worker.js",
});
mockSubDomainRequest();
await runWrangler("deploy");
Expand Down
2 changes: 1 addition & 1 deletion packages/wrangler/src/dev/local.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import assert from "node:assert";
import chalk from "chalk";
import { useEffect, useRef } from "react";
import onExit from "signal-exit";
import { ExperimentalAssets } from "../config/environment";
import { registerWorker } from "../dev-registry";
import { logger } from "../logger";
import { DEFAULT_WORKER_NAME, MiniflareServer } from "./miniflare";
import type { ProxyData } from "../api";
import type { Config } from "../config";
import type { ExperimentalAssets } from "../config/environment";
import type {
CfDurableObject,
CfScriptFormat,
Expand Down
2 changes: 1 addition & 1 deletion packages/wrangler/src/dev/miniflare.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {
EXTERNAL_AI_WORKER_NAME,
EXTERNAL_AI_WORKER_SCRIPT,
} from "../ai/fetcher";
import { ExperimentalAssets } from "../config/environment";
import { ModuleTypeToRuleType } from "../deployment-bundle/module-collection";
import { withSourceURLs } from "../deployment-bundle/source-url";
import { UserError } from "../errors";
Expand All @@ -25,6 +24,7 @@ import { getSourceMappedString } from "../sourcemap";
import { updateCheck } from "../update-check";
import type { ServiceFetch } from "../api";
import type { Config } from "../config";
import type { ExperimentalAssets } from "../config/environment";
import type {
CfD1Database,
CfDurableObject,
Expand Down

0 comments on commit 33c7761

Please sign in to comment.