├── .gitignore ├── .gitmodules ├── .prettierignore ├── .vscode └── settings.json ├── README.md ├── index.ts ├── package.json ├── pnpm-lock.yaml ├── prettier.config.js ├── prompts ├── index.json └── types.ts ├── scripts └── build.js ├── template ├── default-ejs │ └── vite │ │ └── plugins.ts.ejs └── vue-devtools │ ├── package.json │ └── vite │ └── plugins.ts.data.mjs ├── tsconfig.json └── utils ├── banner.ts ├── deepMerge.ts ├── directoryTraverse.ts ├── emptyDir.ts ├── packageName.ts ├── renderTemplate.ts └── sortDependencies.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/prettier.config.js -------------------------------------------------------------------------------- /prompts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/prompts/index.json -------------------------------------------------------------------------------- /prompts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/prompts/types.ts -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/scripts/build.js -------------------------------------------------------------------------------- /template/default-ejs/vite/plugins.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/template/default-ejs/vite/plugins.ts.ejs -------------------------------------------------------------------------------- /template/vue-devtools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/template/vue-devtools/package.json -------------------------------------------------------------------------------- /template/vue-devtools/vite/plugins.ts.data.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/template/vue-devtools/vite/plugins.ts.data.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/utils/banner.ts -------------------------------------------------------------------------------- /utils/deepMerge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/utils/deepMerge.ts -------------------------------------------------------------------------------- /utils/directoryTraverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/utils/directoryTraverse.ts -------------------------------------------------------------------------------- /utils/emptyDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/utils/emptyDir.ts -------------------------------------------------------------------------------- /utils/packageName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/utils/packageName.ts -------------------------------------------------------------------------------- /utils/renderTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/utils/renderTemplate.ts -------------------------------------------------------------------------------- /utils/sortDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyan13/create-vue-xy/HEAD/utils/sortDependencies.ts --------------------------------------------------------------------------------