Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/six-moons-shine.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@opennextjs/cloudflare": patch
---

feat: pass cli arguments not used by `opennextjs-cloudflare` to wrangler

Previously, arguments had to be provided after `--` e.g. `opennextjs-cloudflare preview -- --port 12345`. This is no longer necessary, and they can be provided normally, e.g. `opennextjs-cloudflare preview --port 12345`.
38 changes: 38 additions & 0 deletions packages/cloudflare/src/cli/args.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import { describe, expect, it } from "vitest";

import { getPassthroughArgs } from "./args.js";

describe("getPassthroughArgs", () => {
it("should return args not used by the cli", () => {
const args = [
"pnpm",
"/opennextjs/cloudflare/examples/ssg-app/node_modules/@opennextjs/cloudflare/dist/cli/index.js",
"preview",
"--skipBuild",
"--preview",
"-t",
"-v=1",
"-pre",
"152",
"--pre2=1543",
"--",
"--port",
"1234",
"--inspector-port",
"1234",
];

expect(getPassthroughArgs(args, { options: { skipBuild: { type: "boolean" } } })).toEqual([
"--preview",
"-t",
"-v=1",
"-pre",
"152",
"--pre2=1543",
"--port",
"1234",
"--inspector-port",
"1234",
]);
});
});
63 changes: 43 additions & 20 deletions packages/cloudflare/src/cli/args.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { mkdirSync, type Stats, statSync } from "node:fs";
import { resolve } from "node:path";
import type { ParseArgsConfig } from "node:util";
import { parseArgs } from "node:util";

import type { WranglerTarget } from "./utils/run-wrangler.js";
Expand All @@ -25,32 +26,34 @@ export type Arguments = (
}
) & { outputDir?: string };

// Config for parsing CLI arguments
const config = {
allowPositionals: true,
strict: false,
options: {
skipBuild: { type: "boolean", short: "s", default: false },
output: { type: "string", short: "o" },
noMinify: { type: "boolean", default: false },
skipWranglerConfigCheck: { type: "boolean", default: false },
cacheChunkSize: { type: "string" },
},
} as const satisfies ParseArgsConfig;

export function getArgs(): Arguments {
const { positionals, values } = parseArgs({
options: {
skipBuild: { type: "boolean", short: "s", default: false },
output: { type: "string", short: "o" },
noMinify: { type: "boolean", default: false },
skipWranglerConfigCheck: { type: "boolean", default: false },
cacheChunkSize: { type: "string" },
},
allowPositionals: true,
});
const { positionals, values } = parseArgs(config);

const outputDir = values.output ? resolve(values.output) : undefined;
const outputDir = typeof values.output === "string" ? resolve(values.output) : undefined;
if (outputDir) assertDirArg(outputDir, "output", true);

const passthroughArgs = getPassthroughArgs();

switch (positionals[0]) {
case "build":
return {
command: "build",
outputDir,
skipNextBuild:
values.skipBuild || ["1", "true", "yes"].includes(String(process.env.SKIP_NEXT_APP_BUILD)),
!!values.skipBuild || ["1", "true", "yes"].includes(String(process.env.SKIP_NEXT_APP_BUILD)),
skipWranglerConfigCheck:
values.skipWranglerConfigCheck ||
!!values.skipWranglerConfigCheck ||
["1", "true", "yes"].includes(String(process.env.SKIP_WRANGLER_CONFIG_CHECK)),
minify: !values.noMinify,
};
Expand All @@ -60,7 +63,7 @@ export function getArgs(): Arguments {
return {
command: positionals[0],
outputDir,
passthroughArgs,
passthroughArgs: getPassthroughArgs(process.argv, config),
...(values.cacheChunkSize && { cacheChunkSize: Number(values.cacheChunkSize) }),
};
case "populateCache":
Expand All @@ -71,7 +74,7 @@ export function getArgs(): Arguments {
command: "populateCache",
outputDir,
target: positionals[1],
environment: getWranglerEnvironmentFlag(passthroughArgs),
environment: getWranglerEnvironmentFlag(process.argv),
...(values.cacheChunkSize && { cacheChunkSize: Number(values.cacheChunkSize) }),
};
default:
Expand All @@ -81,9 +84,29 @@ export function getArgs(): Arguments {
}
}

function getPassthroughArgs() {
const passthroughPos = process.argv.indexOf("--");
return passthroughPos === -1 ? [] : process.argv.slice(passthroughPos + 1);
export function getPassthroughArgs<T extends ParseArgsConfig>(args: string[], { options = {} }: T) {
const passthroughArgs: string[] = [];

for (let i = 0; i < args.length; i++) {
if (args[i] === "--") {
passthroughArgs.push(...args.slice(i + 1));
return passthroughArgs;
}

// look for `--arg(=value)`, `-arg(=value)`
const [, name] = /^--?(\w[\w-]*)(=.+)?$/.exec(args[i]!) ?? [];
if (name && !(name in options)) {
passthroughArgs.push(args[i]!);

// Array args can have multiple values
// ref https://github.com/yargs/yargs-parser/blob/main/README.md#greedy-arrays
while (i < args.length - 1 && !args[i + 1]?.startsWith("-")) {
passthroughArgs.push(args[++i]!);
}
}
}

return passthroughArgs;
}

function assertDirArg(path: string, argName?: string, make?: boolean) {
Expand Down