1
1
import type { CAC } from "cac" ;
2
2
3
+ import rootInstaller from "./command/root" ;
3
4
import createProjectInstaller from "./command/create-project" ;
4
5
import clearInstaller from "./command/clear" ;
5
6
import gitCommitInstaller from "./command/git-commit" ;
6
7
import gitCommitVerifyInstaller from "./command/git-commit-verify" ;
7
8
import gitInitSimpleHooksInstaller from "./command/git-init-hooks" ;
8
9
import npmDepCheckInstaller from "./command/npm-dep-check" ;
9
- import npmRunInstaller from "./command/npm-run" ;
10
10
import npmRegistryInstaller from "./command/npm-registry" ;
11
11
import eslintFixInstaller from "./command/eslint-fix" ;
12
12
import prettierFormatInstaller from "./command/prettier-format" ;
@@ -16,6 +16,7 @@ import gitUserInstaller from "./command/git-user";
16
16
import quantityInstaller from "./command/quantity" ;
17
17
18
18
export function cmdInstaller ( cli : CAC ) {
19
+ rootInstaller ( cli ) . setup ( ) ;
19
20
gitCommitInstaller ( cli ) . setup ( ) ;
20
21
gitCommitVerifyInstaller ( cli ) . setup ( ) ;
21
22
gitUserInstaller ( cli ) . setup ( ) ;
@@ -29,5 +30,4 @@ export function cmdInstaller(cli: CAC) {
29
30
templateInstaller ( cli ) . setup ( ) ;
30
31
lighthouseInstaller ( cli ) . setup ( ) ;
31
32
quantityInstaller ( cli ) . setup ( ) ;
32
- npmRunInstaller ( cli ) . setup ( ) ;
33
33
}
0 commit comments