├── .babelrc.js ├── .eslintignore ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── notify-release.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .nvmrc ├── .prettierrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── commitlint.config.js ├── jest.config.js ├── package.json ├── src ├── index.d.ts └── index.js ├── test-d └── index.test-d.ts ├── test ├── .eslintrc ├── axios.d.ts ├── index.test.jsx ├── index.test.ssr.jsx └── testing-library__react-hooks.d.ts └── tsconfig.json /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | cjs 2 | coverage 3 | es 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/notify-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/.github/workflows/notify-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx --no-install commitlint --edit $1 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx --no-install lint-staged 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'] 3 | } 4 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/package.json -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/src/index.js -------------------------------------------------------------------------------- /test-d/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/test-d/index.test-d.ts -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/axios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/test/axios.d.ts -------------------------------------------------------------------------------- /test/index.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/test/index.test.jsx -------------------------------------------------------------------------------- /test/index.test.ssr.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/test/index.test.ssr.jsx -------------------------------------------------------------------------------- /test/testing-library__react-hooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/test/testing-library__react-hooks.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoneb/axios-hooks/HEAD/tsconfig.json --------------------------------------------------------------------------------