File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { spawnSync } from "node:child_process";
44import { existsSync , writeFileSync } from "node:fs" ;
55import path from "node:path" ;
66import { 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" ;
88import { printHeader } from "./build/utils.js" ;
99
1010const 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}
You can’t perform that action at this time.
0 commit comments