@fluid-tools/fetch-tool 2.90.0 → 2.92.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/CHANGELOG.md +8 -0
- package/eslint.config.mts +27 -7
- package/package.json +21 -21
package/CHANGELOG.md
CHANGED
package/eslint.config.mts
CHANGED
|
@@ -4,25 +4,45 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { Linter } from "eslint";
|
|
7
|
-
import {
|
|
7
|
+
import { recommended } from "../../../common/build/eslint-config-fluid/flat.mts";
|
|
8
8
|
|
|
9
9
|
const config: Linter.Config[] = [
|
|
10
|
-
...
|
|
10
|
+
...recommended,
|
|
11
11
|
{
|
|
12
12
|
rules: {
|
|
13
|
-
"
|
|
13
|
+
"@typescript-eslint/consistent-type-imports": [
|
|
14
14
|
"error",
|
|
15
15
|
{
|
|
16
|
-
"
|
|
16
|
+
"fixStyle": "inline-type-imports",
|
|
17
17
|
},
|
|
18
18
|
],
|
|
19
|
-
"@typescript-eslint/
|
|
19
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
20
|
+
"@typescript-eslint/no-import-type-side-effects": "error",
|
|
21
|
+
"@typescript-eslint/no-unsafe-argument": "off",
|
|
22
|
+
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
23
|
+
"@typescript-eslint/no-unsafe-call": "off",
|
|
24
|
+
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
25
|
+
"import-x/no-nodejs-modules": [
|
|
20
26
|
"error",
|
|
21
27
|
{
|
|
22
|
-
"
|
|
28
|
+
"allow": ["child_process", "fs", "util"],
|
|
23
29
|
},
|
|
24
30
|
],
|
|
25
|
-
"
|
|
31
|
+
"unicorn/catch-error-name": "off",
|
|
32
|
+
"unicorn/explicit-length-check": "off",
|
|
33
|
+
"unicorn/no-negated-condition": "off",
|
|
34
|
+
"unicorn/no-new-array": "off",
|
|
35
|
+
"unicorn/no-process-exit": "off",
|
|
36
|
+
"unicorn/no-useless-promise-resolve-reject": "off",
|
|
37
|
+
"unicorn/no-useless-switch-case": "off",
|
|
38
|
+
"unicorn/prefer-node-protocol": "off",
|
|
39
|
+
"unicorn/prefer-number-properties": "off",
|
|
40
|
+
"unicorn/prefer-optional-catch-binding": "off",
|
|
41
|
+
"unicorn/prefer-spread": "off",
|
|
42
|
+
"unicorn/prefer-string-slice": "off",
|
|
43
|
+
"unicorn/prefer-top-level-await": "off",
|
|
44
|
+
"unicorn/switch-case-braces": "off",
|
|
45
|
+
"unicorn/text-encoding-identifier-case": "off",
|
|
26
46
|
},
|
|
27
47
|
},
|
|
28
48
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-tools/fetch-tool",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.92.0",
|
|
4
4
|
"description": "Console tool to fetch Fluid data from relay service",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -15,30 +15,30 @@
|
|
|
15
15
|
"fluid-fetch": "bin/fluid-fetch"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@azure/identity": "^4.
|
|
18
|
+
"@azure/identity": "^4.13.0",
|
|
19
19
|
"@azure/identity-cache-persistence": "^1.1.0",
|
|
20
|
-
"@fluid-internal/client-utils": "~2.
|
|
21
|
-
"@fluidframework/container-runtime": "~2.
|
|
22
|
-
"@fluidframework/core-interfaces": "~2.
|
|
23
|
-
"@fluidframework/core-utils": "~2.
|
|
24
|
-
"@fluidframework/datastore": "~2.
|
|
25
|
-
"@fluidframework/driver-definitions": "~2.
|
|
26
|
-
"@fluidframework/odsp-doclib-utils": "~2.
|
|
27
|
-
"@fluidframework/odsp-driver": "~2.
|
|
28
|
-
"@fluidframework/odsp-driver-definitions": "~2.
|
|
29
|
-
"@fluidframework/odsp-urlresolver": "~2.
|
|
30
|
-
"@fluidframework/routerlicious-driver": "~2.
|
|
31
|
-
"@fluidframework/routerlicious-urlresolver": "~2.
|
|
32
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
33
|
-
"@fluidframework/tool-utils": "~2.
|
|
20
|
+
"@fluid-internal/client-utils": "~2.92.0",
|
|
21
|
+
"@fluidframework/container-runtime": "~2.92.0",
|
|
22
|
+
"@fluidframework/core-interfaces": "~2.92.0",
|
|
23
|
+
"@fluidframework/core-utils": "~2.92.0",
|
|
24
|
+
"@fluidframework/datastore": "~2.92.0",
|
|
25
|
+
"@fluidframework/driver-definitions": "~2.92.0",
|
|
26
|
+
"@fluidframework/odsp-doclib-utils": "~2.92.0",
|
|
27
|
+
"@fluidframework/odsp-driver": "~2.92.0",
|
|
28
|
+
"@fluidframework/odsp-driver-definitions": "~2.92.0",
|
|
29
|
+
"@fluidframework/odsp-urlresolver": "~2.92.0",
|
|
30
|
+
"@fluidframework/routerlicious-driver": "~2.92.0",
|
|
31
|
+
"@fluidframework/routerlicious-urlresolver": "~2.92.0",
|
|
32
|
+
"@fluidframework/runtime-definitions": "~2.92.0",
|
|
33
|
+
"@fluidframework/tool-utils": "~2.92.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@biomejs/biome": "~
|
|
37
|
-
"@fluid-tools/build-cli": "^0.
|
|
38
|
-
"@fluid-tools/fetch-tool-previous": "npm:@fluid-tools/fetch-tool@2.
|
|
36
|
+
"@biomejs/biome": "~2.4.5",
|
|
37
|
+
"@fluid-tools/build-cli": "^0.64.0",
|
|
38
|
+
"@fluid-tools/fetch-tool-previous": "npm:@fluid-tools/fetch-tool@2.91.0",
|
|
39
39
|
"@fluidframework/build-common": "^2.0.3",
|
|
40
|
-
"@fluidframework/build-tools": "^0.
|
|
41
|
-
"@fluidframework/eslint-config-fluid": "
|
|
40
|
+
"@fluidframework/build-tools": "^0.64.0",
|
|
41
|
+
"@fluidframework/eslint-config-fluid": "^9.0.0",
|
|
42
42
|
"@types/node": "~20.19.30",
|
|
43
43
|
"copyfiles": "^2.4.1",
|
|
44
44
|
"eslint": "~9.39.1",
|