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";
4
4
import { existsSync , writeFileSync } from "node:fs" ;
5
5
import path from "node:path" ;
6
6
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" ;
8
8
import { printHeader } from "./build/utils.js" ;
9
9
10
10
const command = process . argv [ 2 ] ;
@@ -118,10 +118,14 @@ function printHelp() {
118
118
119
119
console . log ( "Other commands:" ) ;
120
120
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
+ ) ;
122
124
123
125
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
+ ) ;
125
129
126
130
process . exit ( 1 ) ;
127
131
}
You can’t perform that action at this time.
0 commit comments