@@ -3,22 +3,21 @@ import type { CommandDef } from 'citty'
3
3
const _rDefault = ( r : any ) => ( r . default || r ) as Promise < CommandDef >
4
4
5
5
export const commands = {
6
- 'add' : ( ) => import ( './add' ) . then ( _rDefault ) ,
7
- 'analyze' : ( ) => import ( './analyze' ) . then ( _rDefault ) ,
8
- 'build-module' : ( ) => import ( './build-module' ) . then ( _rDefault ) ,
9
- 'build' : ( ) => import ( './build' ) . then ( _rDefault ) ,
10
- 'cleanup' : ( ) => import ( './cleanup' ) . then ( _rDefault ) ,
11
- '_dev' : ( ) => import ( './dev-child' ) . then ( _rDefault ) ,
12
- 'dev' : ( ) => import ( './dev' ) . then ( _rDefault ) ,
13
- 'devtools' : ( ) => import ( './devtools' ) . then ( _rDefault ) ,
14
- 'generate' : ( ) => import ( './generate' ) . then ( _rDefault ) ,
15
- 'info' : ( ) => import ( './info' ) . then ( _rDefault ) ,
16
- 'init' : ( ) => import ( './init' ) . then ( _rDefault ) ,
17
- 'module' : ( ) => import ( './module' ) . then ( _rDefault ) ,
18
- 'prepare' : ( ) => import ( './prepare' ) . then ( _rDefault ) ,
19
- 'preview' : ( ) => import ( './preview' ) . then ( _rDefault ) ,
20
- 'start' : ( ) => import ( './preview' ) . then ( _rDefault ) ,
21
- 'test' : ( ) => import ( './test' ) . then ( _rDefault ) ,
22
- 'typecheck' : ( ) => import ( './typecheck' ) . then ( _rDefault ) ,
23
- 'upgrade' : ( ) => import ( './upgrade' ) . then ( _rDefault ) ,
6
+ add : ( ) => import ( './add' ) . then ( _rDefault ) ,
7
+ analyze : ( ) => import ( './analyze' ) . then ( _rDefault ) ,
8
+ build : ( ) => import ( './build' ) . then ( _rDefault ) ,
9
+ cleanup : ( ) => import ( './cleanup' ) . then ( _rDefault ) ,
10
+ _dev : ( ) => import ( './dev-child' ) . then ( _rDefault ) ,
11
+ dev : ( ) => import ( './dev' ) . then ( _rDefault ) ,
12
+ devtools : ( ) => import ( './devtools' ) . then ( _rDefault ) ,
13
+ generate : ( ) => import ( './generate' ) . then ( _rDefault ) ,
14
+ info : ( ) => import ( './info' ) . then ( _rDefault ) ,
15
+ init : ( ) => import ( './init' ) . then ( _rDefault ) ,
16
+ module : ( ) => import ( './module' ) . then ( _rDefault ) ,
17
+ prepare : ( ) => import ( './prepare' ) . then ( _rDefault ) ,
18
+ preview : ( ) => import ( './preview' ) . then ( _rDefault ) ,
19
+ start : ( ) => import ( './preview' ) . then ( _rDefault ) ,
20
+ test : ( ) => import ( './test' ) . then ( _rDefault ) ,
21
+ typecheck : ( ) => import ( './typecheck' ) . then ( _rDefault ) ,
22
+ upgrade : ( ) => import ( './upgrade' ) . then ( _rDefault ) ,
24
23
} as const
0 commit comments