-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[add] Abort Signal support & polyfill (#9)
- Loading branch information
Showing
10 changed files
with
3,735 additions
and
3,121 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "koajax", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"license": "LGPL-3.0", | ||
"author": "[email protected]", | ||
"description": "HTTP Client based on Koa-like middlewares", | ||
|
@@ -25,10 +25,10 @@ | |
"main": "dist/index.js", | ||
"module": "dist/index.esm.js", | ||
"dependencies": { | ||
"@swc/helpers": "^0.5.8", | ||
"@swc/helpers": "^0.5.11", | ||
"iterable-observer": "^1.0.1", | ||
"regenerator-runtime": "^0.14.1", | ||
"web-utility": "^4.3.0" | ||
"web-utility": "^4.4.0" | ||
}, | ||
"peerDependencies": { | ||
"jsdom": ">=21" | ||
|
@@ -39,8 +39,8 @@ | |
"@types/core-js": "^2.5.8", | ||
"@types/jest": "^29.5.12", | ||
"@types/jsdom": "^21.1.6", | ||
"@types/node": "^18.19.28", | ||
"core-js": "^3.36.1", | ||
"@types/node": "^18.19.33", | ||
"core-js": "^3.37.1", | ||
"cross-env": "^7.0.3", | ||
"husky": "^9.0.11", | ||
"jest": "^29.7.0", | ||
|
@@ -51,9 +51,9 @@ | |
"parcel": "~2.12.0", | ||
"prettier": "^3.2.5", | ||
"ts-jest": "^29.1.2", | ||
"typedoc": "^0.25.12", | ||
"typedoc-plugin-mdn-links": "^3.1.18", | ||
"typescript": "~5.4.3" | ||
"typedoc": "^0.25.13", | ||
"typedoc-plugin-mdn-links": "^3.1.25", | ||
"typescript": "~5.5.0-beta" | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
|
@@ -77,7 +77,7 @@ | |
}, | ||
"scripts": { | ||
"prepare": "husky", | ||
"test": "lint-staged && jest", | ||
"test": "lint-staged && cross-env NODE_OPTIONS=--unhandled-rejections=warn jest", | ||
"pack-dist": "rm -rf dist/ && tsc --emitDeclarationOnly && parcel build", | ||
"pack-docs": "rm -rf docs/ && typedoc source/", | ||
"build": "npm run pack-dist && npm run pack-docs", | ||
|
Oops, something went wrong.