├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── components │ └── Button.vue ├── index.ts └── types │ └── vue.d.ts ├── test ├── setup.ts └── unit │ └── components │ ├── Button.spec.ts │ └── __snapshots__ │ └── Button.spec.ts.snap ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/src/components/Button.vue -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/src/types/vue.d.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- 1 | // Write setup configuration 2 | -------------------------------------------------------------------------------- /test/unit/components/Button.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/test/unit/components/Button.spec.ts -------------------------------------------------------------------------------- /test/unit/components/__snapshots__/Button.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/test/unit/components/__snapshots__/Button.spec.ts.snap -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/vite-template-vue3-library/HEAD/yarn.lock --------------------------------------------------------------------------------