-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: cloneData for concurrent requests (#921)
* code * code * reuse my biome config * fix breaking change on 1.6.0 * lint
- Loading branch information
1 parent
3c06514
commit a7a4e31
Showing
15 changed files
with
154 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "axios-cache-interceptor", | ||
"version": "1.6.0", | ||
"version": "1.6.1", | ||
"description": "Cache interceptor for axios", | ||
"keywords": ["axios", "cache", "interceptor", "adapter", "http", "plugin", "wrapper"], | ||
"homepage": "https://axios-cache-interceptor.js.org", | ||
|
@@ -11,7 +11,6 @@ | |
"author": "Arthur Fiorette <[email protected]>", | ||
"sideEffects": false, | ||
"type": "module", | ||
"source": "./src/index.ts", | ||
"exports": { | ||
".": { | ||
"require": "./dist/index.cjs", | ||
|
@@ -28,20 +27,21 @@ | |
"jsdelivr": "./dist/index.bundle.js", | ||
"unpkg": "./dist/index.bundle.js", | ||
"module": "./dist/index.mjs", | ||
"source": "./src/index.ts", | ||
"types": "./dist/index.d.ts", | ||
"scripts": { | ||
"benchmark": "cd benchmark && pnpm start", | ||
"build": "bash build.sh", | ||
"docs:build": "vitepress build docs", | ||
"docs:dev": "vitepress dev docs --port 1227", | ||
"docs:serve": "vitepress serve docs", | ||
"test": "c8 --reporter lcov --reporter text node --import ./test/setup.js --enable-source-maps --test test/**/*.test.ts", | ||
"test:only": "c8 --reporter lcov --reporter text node --import ./test/setup.js --enable-source-maps --test-only", | ||
"version": "auto-changelog -p && cp CHANGELOG.md docs/src/others/changelog.md && git add CHANGELOG.md docs/src/others/changelog.md", | ||
"format": "biome format --write .", | ||
"lint": "biome check .", | ||
"lint:ci": "biome ci .", | ||
"lint:fix": "biome check --write --unsafe .", | ||
"lint:ci": "biome ci ." | ||
"test": "c8 --reporter lcov --reporter text node --import ./test/setup.js --enable-source-maps --test test/**/*.test.ts", | ||
"test:only": "c8 --reporter lcov --reporter text node --import ./test/setup.js --enable-source-maps --test-only", | ||
"version": "auto-changelog -p && cp CHANGELOG.md docs/src/others/changelog.md && git add CHANGELOG.md docs/src/others/changelog.md" | ||
}, | ||
"resolutions": { | ||
"colors": "1.4.0" | ||
|
@@ -52,6 +52,7 @@ | |
"object-code": "1.3.3" | ||
}, | ||
"devDependencies": { | ||
"@arthurfiorette/biomejs-config": "1.0.5", | ||
"@biomejs/biome": "1.9.4", | ||
"@swc-node/register": "1.9.0", | ||
"@swc/helpers": "0.5.13", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.