|
1 |
| -export * from "@/command/clear"; |
2 |
| -export * from "@/command/git-commit"; |
3 |
| -export * from "@/command/git-commit-verify"; |
4 |
| -export * from "@/command/git-init-hooks"; |
5 |
| -export * from "@/command/npm-run"; |
6 |
| -export * from "@/command/npm-dep-check"; |
7 |
| -export * from "@/command/eslint-fix"; |
8 |
| -export * from "@/command/prettier-format"; |
| 1 | +import rootInstaller, { root } from "@/command/root"; |
| 2 | +import createProjectInstaller, { |
| 3 | + createProject, |
| 4 | +} from "@/command/create-project"; |
| 5 | +import clearInstaller, { clear } from "@/command/clear"; |
| 6 | +import gitCommitInstaller, { gitCommit } from "@/command/git-commit"; |
| 7 | +import gitCommitVerifyInstaller, { |
| 8 | + gitCommitVerify, |
| 9 | +} from "@/command/git-commit-verify"; |
| 10 | +import gitInitSimpleHooksInstaller, { |
| 11 | + gitInitSimpleHooks, |
| 12 | +} from "@/command/git-init-hooks"; |
| 13 | +import npmDepCheckInstaller, { npmDepCheck } from "@/command/npm-dep-check"; |
| 14 | +import npmRegistryInstaller, { npmRegistry } from "@/command/npm-registry"; |
| 15 | +import eslintFixInstaller, { eslintFix } from "@/command/eslint-fix"; |
| 16 | +import prettierFormatInstaller, { |
| 17 | + prettierFormat, |
| 18 | +} from "@/command/prettier-format"; |
| 19 | +import templateInstaller, { template } from "@/command/template"; |
| 20 | +import lighthouseInstaller, { lighthouse } from "@/command/lighthouse"; |
| 21 | +import gitUserInstaller, { gitUser } from "@/command/git-user"; |
| 22 | +import quantityInstaller, { quantity } from "@/command/quantity"; |
| 23 | +import { defineConfig } from "@/shared/index"; |
9 | 24 |
|
10 |
| -export * from "@/shared/index"; |
11 |
| -export * from "@/shared/config"; |
12 |
| -export * from "@/shared/types"; |
| 25 | +export { |
| 26 | + root, |
| 27 | + createProject, |
| 28 | + clear, |
| 29 | + gitCommit, |
| 30 | + gitCommitVerify, |
| 31 | + gitInitSimpleHooks, |
| 32 | + npmDepCheck, |
| 33 | + npmRegistry, |
| 34 | + eslintFix, |
| 35 | + prettierFormat, |
| 36 | + template, |
| 37 | + lighthouse, |
| 38 | + gitUser, |
| 39 | + quantity, |
| 40 | +}; |
13 | 41 |
|
14 |
| -export * from "@/setup"; |
| 42 | +export default defineConfig({ |
| 43 | + plugins: [ |
| 44 | + rootInstaller, |
| 45 | + gitCommitInstaller, |
| 46 | + gitCommitVerifyInstaller, |
| 47 | + gitUserInstaller, |
| 48 | + gitInitSimpleHooksInstaller, |
| 49 | + npmRegistryInstaller, |
| 50 | + clearInstaller, |
| 51 | + npmDepCheckInstaller, |
| 52 | + eslintFixInstaller, |
| 53 | + prettierFormatInstaller, |
| 54 | + createProjectInstaller, |
| 55 | + templateInstaller, |
| 56 | + lighthouseInstaller, |
| 57 | + quantityInstaller, |
| 58 | + ], |
| 59 | +}); |
0 commit comments