├── .eslintrc.json ├── .github └── workflows │ ├── action.yml │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── component │ ├── Helloworld.tsx │ ├── index.ts │ └── style.css ├── index.css ├── main.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/.github/workflows/action.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/.prettierrc -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/component/Helloworld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/src/component/Helloworld.tsx -------------------------------------------------------------------------------- /src/component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/src/component/index.ts -------------------------------------------------------------------------------- /src/component/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/src/component/style.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigyanpoudel/react-vite-library/HEAD/yarn.lock --------------------------------------------------------------------------------