Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
d255227
feat: init
ancientbag May 5, 2025
e7da701
feat: rest methods
ancientbag May 5, 2025
6c4752b
feat: refactor
ancientbag May 6, 2025
77756ca
feat: refactor, reexports
ancientbag May 6, 2025
8b6d253
feat: refactor
ancientbag May 12, 2025
a899bb8
docs: readme upd
ancientbag May 12, 2025
c37cc40
feat: axios added for package.json
ancientbag May 12, 2025
a267aef
feat: package lock upd
ancientbag May 12, 2025
4cea0ea
feat: refactor and setHeader method added
ancientbag May 12, 2025
5d11bb4
feat: fetch controller json response formatter
ancientbag May 12, 2025
57b93f2
feat: workaround for Headers collection for fetch
ancientbag May 12, 2025
6833ccd
docs: readme upd
ancientbag May 12, 2025
4b951d9
feat: request => service
ancientbag May 12, 2025
3654e84
feat: request => service
ancientbag May 12, 2025
e292813
feat: request => service
ancientbag May 12, 2025
2f791a3
docs: upd
ancientbag May 12, 2025
21d70a4
feat: folder rename
ancientbag May 12, 2025
f29ecaf
docs: readme upd
ancientbag May 12, 2025
1ab1ed4
feat(http-service): add token refresh
May 20, 2025
b63bc53
feat(http-service): update token refresh
May 21, 2025
9fc569b
feat(http-service): remove arrow functions
May 21, 2025
47abc5a
feat(http-client): client and request interfaces, attemps not result
May 26, 2025
2f9cdce
feat(http-client): client with axios, client with fetch
May 27, 2025
d985515
feat(http-client): add http client abstract class
May 28, 2025
b4ec4a8
feat(http-client): axios-http-client post request test
May 28, 2025
18e37e7
Merge branch 'master' into feature/http-client
May 28, 2025
e82b110
feat(http-client): tests
May 29, 2025
988143f
feat(http-client): reorganize code, rename directory
SmorodinVik May 29, 2025
6efad91
feat(http-client): fixes
SmorodinVik May 29, 2025
255ef80
feat(http-service): config fixes
SmorodinVik May 29, 2025
58b94fb
Merge branch 'master' into feature/http-client
May 31, 2025
bde45ab
fix(http-client): vitest config
May 31, 2025
ab7dde5
feat(http-client): axios client and request client fix
May 31, 2025
5af9e9b
feat(http-client): add msw for tests
May 31, 2025
4315b14
feat(http-client): fetch http client tests
Jun 2, 2025
e168143
feat(http-client): add fixtures
Jun 2, 2025
f1f3ec0
feat(http-client): readme and naming
Jun 3, 2025
f071945
feat(http-client): first attemp to response types
Jun 3, 2025
dbc0190
feat(http-client): add response type to http-client-fetch
Jun 3, 2025
966216c
feat(http-client): http client error class
Jun 3, 2025
e603b41
feat(http-client): client error type
Jun 4, 2025
112c813
feat(http-client): fix in headers mapping
Jun 4, 2025
d168f08
feat(http-client): timeout and abort signal
Jun 9, 2025
a71959e
feat(http-client): add other fetch exceptions handling
Jun 9, 2025
122b0c5
feat(http-client): update tests
Jun 9, 2025
8999a36
feat(http-client): remove axios instance
Jun 10, 2025
7ec89e1
feat(http-client): custom timeout for axios client
Jun 10, 2025
42d7503
feat(http-client): request interceptor
Jun 10, 2025
daaae79
feat(http-client): response and error interceptors
Jun 10, 2025
1f1fd2b
feat(http-client): update error interceptor
Jun 11, 2025
f1ce532
feat(http-client): interceptors and their tests
Jun 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
There are two ways to define workspaces:

- Inline in root `vitest.config.mts`
- In root config with glob string and vitest.config.ts in each workspace/package. Example:
- In root config with glob string and vitest.config.mjs in each workspace/package. Example:
```ts
import { defineProject, mergeConfig } from 'vitest/config';
import configShared from '../../vitest.config';
Expand Down
Loading