File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
packages/cloudflare/src/cli Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11import { BuildOptions } from "@opennextjs/aws/build/helper.js" ;
22import { OpenNextConfig } from "@opennextjs/aws/types/open-next.js" ;
33
4- import { populateCache } from "../populate-cache/populate-cache.js" ;
54import { getWranglerEnvironmentFlag , runWrangler } from "../utils/run-wrangler.js" ;
5+ import { populateCache } from "./populate-cache.js" ;
66
77export async function deploy (
88 options : BuildOptions ,
File renamed without changes.
Original file line number Diff line number Diff line change 11import { BuildOptions } from "@opennextjs/aws/build/helper.js" ;
22import { OpenNextConfig } from "@opennextjs/aws/types/open-next.js" ;
33
4- import { populateCache } from "../populate-cache/populate-cache.js" ;
54import { getWranglerEnvironmentFlag , runWrangler } from "../utils/run-wrangler.js" ;
5+ import { populateCache } from "./populate-cache.js" ;
66
77export async function preview (
88 options : BuildOptions ,
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ import logger from "@opennextjs/aws/logger.js";
1010import { Arguments , getArgs } from "./args.js" ;
1111import { build } from "./build/build.js" ;
1212import { createOpenNextConfigIfNotExistent , ensureCloudflareConfig } from "./build/utils/index.js" ;
13- import { deploy } from "./deploy /deploy.js" ;
14- import { populateCache } from "./populate-cache /populate-cache.js" ;
15- import { preview } from "./preview /preview.js" ;
13+ import { deploy } from "./commands /deploy.js" ;
14+ import { populateCache } from "./commands /populate-cache.js" ;
15+ import { preview } from "./commands /preview.js" ;
1616
1717const nextAppDir = process . cwd ( ) ;
1818
You can’t perform that action at this time.
0 commit comments