├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── renovate.json5 └── workflows │ ├── release-commit.yml │ ├── release.yml │ └── unit-test.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── playground ├── index.html ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.vue │ ├── main.ts │ └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── core │ ├── options.ts │ └── utils.ts ├── esbuild.ts ├── farm.ts ├── index.ts ├── rolldown.ts ├── rollup.ts ├── rspack.ts ├── vite.ts ├── volar.ts └── webpack.ts ├── tests ├── __snapshots__ │ └── rollup.test.ts.snap ├── fixtures │ ├── ElCard.vue │ ├── UPPER-CASE.vue │ ├── basic.vue │ ├── el-button.vue │ ├── main.ts │ ├── my_button.vue │ └── tsconfig.json ├── rollup.test.ts └── volar.test.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sxzz 2 | -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- 1 | { 2 | extends: ['github>sxzz/renovate-config'], 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/release-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/.github/workflows/release-commit.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | *.log 5 | .vercel 6 | .eslintcache 7 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/package.json -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/playground/public/vite.svg -------------------------------------------------------------------------------- /playground/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/playground/src/App.vue -------------------------------------------------------------------------------- /playground/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/playground/src/main.ts -------------------------------------------------------------------------------- /playground/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/playground/tsconfig.json -------------------------------------------------------------------------------- /playground/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/playground/vite.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - playground 3 | -------------------------------------------------------------------------------- /src/core/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/core/options.ts -------------------------------------------------------------------------------- /src/core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/core/utils.ts -------------------------------------------------------------------------------- /src/esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/esbuild.ts -------------------------------------------------------------------------------- /src/farm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/farm.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/rolldown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/rolldown.ts -------------------------------------------------------------------------------- /src/rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/rollup.ts -------------------------------------------------------------------------------- /src/rspack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/rspack.ts -------------------------------------------------------------------------------- /src/vite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/vite.ts -------------------------------------------------------------------------------- /src/volar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/volar.ts -------------------------------------------------------------------------------- /src/webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/src/webpack.ts -------------------------------------------------------------------------------- /tests/__snapshots__/rollup.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tests/__snapshots__/rollup.test.ts.snap -------------------------------------------------------------------------------- /tests/fixtures/ElCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tests/fixtures/ElCard.vue -------------------------------------------------------------------------------- /tests/fixtures/UPPER-CASE.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tests/fixtures/UPPER-CASE.vue -------------------------------------------------------------------------------- /tests/fixtures/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tests/fixtures/basic.vue -------------------------------------------------------------------------------- /tests/fixtures/el-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tests/fixtures/el-button.vue -------------------------------------------------------------------------------- /tests/fixtures/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tests/fixtures/main.ts -------------------------------------------------------------------------------- /tests/fixtures/my_button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tests/fixtures/my_button.vue -------------------------------------------------------------------------------- /tests/fixtures/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tests/fixtures/tsconfig.json -------------------------------------------------------------------------------- /tests/rollup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tests/rollup.test.ts -------------------------------------------------------------------------------- /tests/volar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tests/volar.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unplugin/unplugin-vue-named-export/HEAD/tsconfig.json --------------------------------------------------------------------------------