Skip to content

Commit 5ce1272

Browse files
committed
fix import
1 parent 2b5d0ae commit 5ce1272

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/cloudflare/src/cli/args.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { mkdirSync, type Stats, statSync } from "node:fs";
22
import { resolve } from "node:path";
33
import { parseArgs } from "node:util";
44

5-
import { isWranglerTarget, WranglerTarget } from "./utils/run-wrangler";
5+
import { isWranglerTarget, WranglerTarget } from "./utils/run-wrangler.js";
66

77
export type Arguments = (
88
| {

packages/cloudflare/src/cli/preview/preview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { BuildOptions } from "@opennextjs/aws/build/helper.js";
22
import { OpenNextConfig } from "@opennextjs/aws/types/open-next.js";
33

4-
import { populateCache } from "../populate-cache/populate-cache";
5-
import { runWrangler } from "../utils/run-wrangler";
4+
import { populateCache } from "../populate-cache/populate-cache.js";
5+
import { runWrangler } from "../utils/run-wrangler.js";
66

77
export async function preview(options: BuildOptions, config: OpenNextConfig) {
88
await populateCache(options, config, { target: "local" });

0 commit comments

Comments
 (0)