├── .env.example ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── feature_request.yml │ └── other.yml ├── PULL_REQUEST_TEMPLATE │ └── PULL_REQUEST_TEMPLATE.md ├── labeler.yml └── workflows │ ├── auto-label-issue.yml │ ├── auto-label.yml │ ├── close-issue-on-pr-merge.yml │ └── setup-labels.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .prettierrc ├── .vscode └── extensions.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── public ├── crashed-error-dark.svg ├── crashed-error-light.svg ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest └── vite.svg ├── src ├── App.tsx ├── __tests__ │ ├── components │ │ ├── Error.test.jsx │ │ ├── Issue.test.tsx │ │ ├── IssuesPerPageSelector.test.tsx │ │ ├── Loader.test.jsx │ │ ├── Logo.test.jsx │ │ ├── MiniContainer.test.jsx │ │ ├── Pagination.test.jsx │ │ ├── Select.test.jsx │ │ └── SortingTagFilter.test.tsx │ ├── hooks │ │ └── useUrlValues.test.jsx │ ├── setup.js │ └── utils │ │ └── helper.test.tsx ├── components │ ├── BackToTopButton.tsx │ ├── Error.tsx │ ├── IssuesPerPageSelector.tsx │ ├── Label.tsx │ ├── Loader.tsx │ ├── Logo.tsx │ ├── MiniContainer.tsx │ ├── Pagination │ │ ├── PaginationButton.tsx │ │ └── index.tsx │ ├── Select.tsx │ ├── SortBy.tsx │ ├── SortingTagFilter.tsx │ ├── index.tsx │ ├── issue │ │ ├── IssueData.tsx │ │ └── index.tsx │ └── ui │ │ └── button.tsx ├── containers │ ├── Filter.tsx │ ├── Issues.tsx │ ├── index.ts │ └── layout │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Provider.tsx │ │ └── index.ts ├── index.css ├── lib │ ├── api │ │ └── requrest.ts │ ├── hooks │ │ ├── use-filter.tsx │ │ ├── use-local-storage.ts │ │ ├── use-theme.tsx │ │ ├── useAsync │ │ │ ├── index.tsx │ │ │ └── reducer.ts │ │ └── useUrlValues │ │ │ ├── index.tsx │ │ │ └── types.ts │ └── utils │ │ ├── HttpGateway.ts │ │ ├── config.ts │ │ └── index.ts ├── main.tsx ├── models │ ├── GithubIssueSearch.ts │ ├── GithubRepository.ts │ ├── HttpGatewayBase.ts │ ├── Label.ts │ ├── Language.ts │ ├── ObjectValues.ts │ ├── Ordering.ts │ ├── Request.ts │ └── SortingTag.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts ├── vitest.config.ts └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.github/ISSUE_TEMPLATE/other.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/auto-label-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.github/workflows/auto-label-issue.yml -------------------------------------------------------------------------------- /.github/workflows/auto-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.github/workflows/auto-label.yml -------------------------------------------------------------------------------- /.github/workflows/close-issue-on-pr-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.github/workflows/close-issue-on-pr-merge.yml -------------------------------------------------------------------------------- /.github/workflows/setup-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.github/workflows/setup-labels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.11.0 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/crashed-error-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/public/crashed-error-dark.svg -------------------------------------------------------------------------------- /public/crashed-error-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/public/crashed-error-light.svg -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/public/favicon/site.webmanifest -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/__tests__/components/Error.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/components/Error.test.jsx -------------------------------------------------------------------------------- /src/__tests__/components/Issue.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/components/Issue.test.tsx -------------------------------------------------------------------------------- /src/__tests__/components/IssuesPerPageSelector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/components/IssuesPerPageSelector.test.tsx -------------------------------------------------------------------------------- /src/__tests__/components/Loader.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/components/Loader.test.jsx -------------------------------------------------------------------------------- /src/__tests__/components/Logo.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/components/Logo.test.jsx -------------------------------------------------------------------------------- /src/__tests__/components/MiniContainer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/components/MiniContainer.test.jsx -------------------------------------------------------------------------------- /src/__tests__/components/Pagination.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/components/Pagination.test.jsx -------------------------------------------------------------------------------- /src/__tests__/components/Select.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/components/Select.test.jsx -------------------------------------------------------------------------------- /src/__tests__/components/SortingTagFilter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/components/SortingTagFilter.test.tsx -------------------------------------------------------------------------------- /src/__tests__/hooks/useUrlValues.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/hooks/useUrlValues.test.jsx -------------------------------------------------------------------------------- /src/__tests__/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/setup.js -------------------------------------------------------------------------------- /src/__tests__/utils/helper.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/__tests__/utils/helper.test.tsx -------------------------------------------------------------------------------- /src/components/BackToTopButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/BackToTopButton.tsx -------------------------------------------------------------------------------- /src/components/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/Error.tsx -------------------------------------------------------------------------------- /src/components/IssuesPerPageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/IssuesPerPageSelector.tsx -------------------------------------------------------------------------------- /src/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/Label.tsx -------------------------------------------------------------------------------- /src/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/Loader.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/MiniContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/MiniContainer.tsx -------------------------------------------------------------------------------- /src/components/Pagination/PaginationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/Pagination/PaginationButton.tsx -------------------------------------------------------------------------------- /src/components/Pagination/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/Pagination/index.tsx -------------------------------------------------------------------------------- /src/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/Select.tsx -------------------------------------------------------------------------------- /src/components/SortBy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/SortBy.tsx -------------------------------------------------------------------------------- /src/components/SortingTagFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/SortingTagFilter.tsx -------------------------------------------------------------------------------- /src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/index.tsx -------------------------------------------------------------------------------- /src/components/issue/IssueData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/issue/IssueData.tsx -------------------------------------------------------------------------------- /src/components/issue/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/issue/index.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/containers/Filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/containers/Filter.tsx -------------------------------------------------------------------------------- /src/containers/Issues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/containers/Issues.tsx -------------------------------------------------------------------------------- /src/containers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/containers/index.ts -------------------------------------------------------------------------------- /src/containers/layout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/containers/layout/Footer.tsx -------------------------------------------------------------------------------- /src/containers/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/containers/layout/Header.tsx -------------------------------------------------------------------------------- /src/containers/layout/Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/containers/layout/Provider.tsx -------------------------------------------------------------------------------- /src/containers/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/containers/layout/index.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/api/requrest.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/hooks/use-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/lib/hooks/use-filter.tsx -------------------------------------------------------------------------------- /src/lib/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/lib/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /src/lib/hooks/use-theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/lib/hooks/use-theme.tsx -------------------------------------------------------------------------------- /src/lib/hooks/useAsync/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/lib/hooks/useAsync/index.tsx -------------------------------------------------------------------------------- /src/lib/hooks/useAsync/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/lib/hooks/useAsync/reducer.ts -------------------------------------------------------------------------------- /src/lib/hooks/useUrlValues/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/lib/hooks/useUrlValues/index.tsx -------------------------------------------------------------------------------- /src/lib/hooks/useUrlValues/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/lib/hooks/useUrlValues/types.ts -------------------------------------------------------------------------------- /src/lib/utils/HttpGateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/lib/utils/HttpGateway.ts -------------------------------------------------------------------------------- /src/lib/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/lib/utils/config.ts -------------------------------------------------------------------------------- /src/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/lib/utils/index.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/models/GithubIssueSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/models/GithubIssueSearch.ts -------------------------------------------------------------------------------- /src/models/GithubRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/models/GithubRepository.ts -------------------------------------------------------------------------------- /src/models/HttpGatewayBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/models/HttpGatewayBase.ts -------------------------------------------------------------------------------- /src/models/Label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/models/Label.ts -------------------------------------------------------------------------------- /src/models/Language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/models/Language.ts -------------------------------------------------------------------------------- /src/models/ObjectValues.ts: -------------------------------------------------------------------------------- 1 | export type ObjectValues = T[keyof T]; 2 | -------------------------------------------------------------------------------- /src/models/Ordering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/models/Ordering.ts -------------------------------------------------------------------------------- /src/models/Request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/models/Request.ts -------------------------------------------------------------------------------- /src/models/SortingTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/src/models/SortingTag.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsinghkv/easy-fix/HEAD/yarn.lock --------------------------------------------------------------------------------