@alwatr/fetch 4.1.3 → 4.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/main.cjs +2 -2
- package/dist/main.cjs.LEGAL.txt +0 -0
- package/dist/main.mjs +2 -2
- package/dist/main.mjs.LEGAL.txt +0 -0
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.1.4](https://github.com/Alwatr/nanolib/compare/@alwatr/fetch@4.1.3...@alwatr/fetch@4.1.4) (2024-10-11)
|
|
7
|
+
|
|
8
|
+
### Miscellaneous Chores
|
|
9
|
+
|
|
10
|
+
* include LICENSE and LEGAL files to publish ([09f366f](https://github.com/Alwatr/nanolib/commit/09f366f680bfa9fb26acb2cd1ccbc68c5a9e9ad8)) by @AliMD
|
|
11
|
+
|
|
6
12
|
## [4.1.3](https://github.com/Alwatr/nanolib/compare/@alwatr/fetch@4.1.2...@alwatr/fetch@4.1.3) (2024-10-11)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @alwatr/fetch
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/fetch v4.1.
|
|
1
|
+
/* @alwatr/fetch v4.1.4 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -33,7 +33,7 @@ var import_global_scope = require("@alwatr/global-scope");
|
|
|
33
33
|
var import_logger = require("@alwatr/logger");
|
|
34
34
|
var import_package_tracer = require("@alwatr/package-tracer");
|
|
35
35
|
var import_parse_duration = require("@alwatr/parse-duration");
|
|
36
|
-
import_package_tracer.packageTracer.add("@alwatr/fetch", "4.1.
|
|
36
|
+
import_package_tracer.packageTracer.add("@alwatr/fetch", "4.1.4");
|
|
37
37
|
var logger_ = (0, import_logger.createLogger)("@alwatr/fetch");
|
|
38
38
|
var cacheStorage_;
|
|
39
39
|
var cacheSupported = Object.hasOwn(import_global_scope.globalScope, "caches");
|
|
File without changes
|
package/dist/main.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/fetch v4.1.
|
|
1
|
+
/* @alwatr/fetch v4.1.4 */
|
|
2
2
|
|
|
3
3
|
// src/core.ts
|
|
4
4
|
import { delay } from "@alwatr/delay";
|
|
@@ -6,7 +6,7 @@ import { globalScope } from "@alwatr/global-scope";
|
|
|
6
6
|
import { createLogger } from "@alwatr/logger";
|
|
7
7
|
import { packageTracer } from "@alwatr/package-tracer";
|
|
8
8
|
import { parseDuration } from "@alwatr/parse-duration";
|
|
9
|
-
packageTracer.add("@alwatr/fetch", "4.1.
|
|
9
|
+
packageTracer.add("@alwatr/fetch", "4.1.4");
|
|
10
10
|
var logger_ = createLogger("@alwatr/fetch");
|
|
11
11
|
var cacheStorage_;
|
|
12
12
|
var cacheSupported = Object.hasOwn(globalScope, "caches");
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/fetch",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "Enhanced fetch API with cache strategy, retry pattern, timeout, helper methods and enhanced types.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -38,7 +38,8 @@
|
|
|
38
38
|
},
|
|
39
39
|
"license": "AGPL-3.0-only",
|
|
40
40
|
"files": [
|
|
41
|
-
"**/*.{js,mjs,cjs,map,d.ts,html,md}",
|
|
41
|
+
"**/*.{js,mjs,cjs,map,d.ts,html,md,LEGAL.txt}",
|
|
42
|
+
"LICENSE",
|
|
42
43
|
"!demo/**/*"
|
|
43
44
|
],
|
|
44
45
|
"publishConfig": {
|
|
@@ -71,19 +72,19 @@
|
|
|
71
72
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
72
73
|
},
|
|
73
74
|
"dependencies": {
|
|
74
|
-
"@alwatr/delay": "^1.0.
|
|
75
|
-
"@alwatr/global-scope": "^1.1.
|
|
76
|
-
"@alwatr/logger": "^4.0.
|
|
77
|
-
"@alwatr/package-tracer": "^1.0.
|
|
78
|
-
"@alwatr/parse-duration": "^1.1.
|
|
75
|
+
"@alwatr/delay": "^1.0.4",
|
|
76
|
+
"@alwatr/global-scope": "^1.1.26",
|
|
77
|
+
"@alwatr/logger": "^4.0.4",
|
|
78
|
+
"@alwatr/package-tracer": "^1.0.4",
|
|
79
|
+
"@alwatr/parse-duration": "^1.1.4"
|
|
79
80
|
},
|
|
80
81
|
"devDependencies": {
|
|
81
|
-
"@alwatr/nano-build": "^2.0.
|
|
82
|
-
"@alwatr/prettier-config": "^1.0.
|
|
83
|
-
"@alwatr/tsconfig-base": "^1.3.
|
|
84
|
-
"@alwatr/type-helper": "^2.0.
|
|
82
|
+
"@alwatr/nano-build": "^2.0.1",
|
|
83
|
+
"@alwatr/prettier-config": "^1.0.6",
|
|
84
|
+
"@alwatr/tsconfig-base": "^1.3.2",
|
|
85
|
+
"@alwatr/type-helper": "^2.0.2",
|
|
85
86
|
"jest": "^29.7.0",
|
|
86
87
|
"typescript": "^5.6.3"
|
|
87
88
|
},
|
|
88
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "2a35f99b0347aacdccf3b6f28b30ca902f02a2f1"
|
|
89
90
|
}
|