@k03mad/request 5.3.0 → 5.4.0
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/.github/workflows/lint.yml +3 -0
- package/README.md +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
"Got" with queues and debug logs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@k03mad/request",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.0",
|
|
4
4
|
"description": "Request library",
|
|
5
5
|
"maintainers": [
|
|
6
6
|
"Kirill Molchanov <k03.mad@gmail.com"
|
|
@@ -21,18 +21,18 @@
|
|
|
21
21
|
"strip-ansi": "7.1.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@k03mad/eslint-config": "17.
|
|
24
|
+
"@k03mad/eslint-config": "17.14.0",
|
|
25
25
|
"eslint": "8.56.0",
|
|
26
26
|
"husky": "8.0.3"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
|
-
"lint": "
|
|
29
|
+
"lint": "pnpm run lint:eslint",
|
|
30
30
|
"lint:eslint": "eslint ./ --cache",
|
|
31
|
-
"clean": "
|
|
31
|
+
"clean": "pnpm run clean:modules && pnpm run clean:eslint:cache",
|
|
32
32
|
"clean:modules": "rm -rf ./node_modules || true",
|
|
33
33
|
"clean:eslint:cache": "rm -rf .eslintcache || true",
|
|
34
|
-
"setup": "
|
|
35
|
-
"setup:prod": "
|
|
34
|
+
"setup": "pnpm run clean && pnpm i",
|
|
35
|
+
"setup:prod": "pnpm run clean && pnpm i --omit=dev",
|
|
36
36
|
"prepare": "husky install || true"
|
|
37
37
|
}
|
|
38
38
|
}
|