Skip to content

Commit f87714a

Browse files
committed
lint
1 parent 8ec0c4c commit f87714a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

packages/open-next/src/index.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { spawnSync } from "node:child_process";
44
import { existsSync, writeFileSync } from "node:fs";
55
import path from "node:path";
66
import { build } from "./build.js";
7-
import { LOCAL_CONFIG, DEV_CONFIG_PATH } from "./build/constant.js";
7+
import { DEV_CONFIG_PATH, LOCAL_CONFIG } from "./build/constant.js";
88
import { printHeader } from "./build/utils.js";
99

1010
const command = process.argv[2];
@@ -118,10 +118,14 @@ function printHelp() {
118118

119119
console.log("Other commands:");
120120
console.log(" local:run");
121-
console.log(" Build and run OpenNext locally with open-next.config.local.ts");
121+
console.log(
122+
" Build and run OpenNext locally with open-next.config.local.ts",
123+
);
122124

123125
console.log(" local:config");
124-
console.log(" Generate a config file with dev overrides for OpenNext in open-next.config.local.ts");
126+
console.log(
127+
" Generate a config file with dev overrides for OpenNext in open-next.config.local.ts",
128+
);
125129

126130
process.exit(1);
127131
}

0 commit comments

Comments
 (0)