@fluidframework/azure-end-to-end-tests 2.74.0-368706 → 2.74.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 +4 -0
- package/eslint.config.mts +67 -0
- package/package.json +26 -25
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/**
|
|
3
|
+
* GENERATED FILE - DO NOT EDIT DIRECTLY.
|
|
4
|
+
* To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
|
|
5
|
+
*/
|
|
6
|
+
import type { Linter } from "eslint";
|
|
7
|
+
import { recommended } from "../../../../common/build/eslint-config-fluid/flat.mts";
|
|
8
|
+
|
|
9
|
+
const config: Linter.Config[] = [
|
|
10
|
+
...recommended,
|
|
11
|
+
{
|
|
12
|
+
rules: {
|
|
13
|
+
"prefer-arrow-callback": "off",
|
|
14
|
+
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
15
|
+
"@typescript-eslint/consistent-type-imports": [
|
|
16
|
+
"error",
|
|
17
|
+
{
|
|
18
|
+
"fixStyle": "inline-type-imports",
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
"@typescript-eslint/no-import-type-side-effects": "error",
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
files: ["**/*.{ts,tsx}"],
|
|
26
|
+
ignores: ["**/src/test/**", "**/tests/**", "**/*.spec.ts", "**/*.test.ts"],
|
|
27
|
+
rules: {
|
|
28
|
+
"@typescript-eslint/consistent-type-exports": [
|
|
29
|
+
"error",
|
|
30
|
+
{
|
|
31
|
+
"fixMixedExportsWithInlineTypeSpecifier": true,
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
files: ["*.spec.ts", "*.test.ts", "**/test/**"],
|
|
38
|
+
rules: {
|
|
39
|
+
"import-x/no-deprecated": "warn",
|
|
40
|
+
"import-x/no-internal-modules": [
|
|
41
|
+
"error",
|
|
42
|
+
{
|
|
43
|
+
"allow": [
|
|
44
|
+
"@fluidframework/*/{beta,alpha,legacy}",
|
|
45
|
+
"fluid-framework/{beta,alpha,legacy}",
|
|
46
|
+
"@fluidframework/*/test-utils",
|
|
47
|
+
"*/index.js",
|
|
48
|
+
"@fluidframework/telemetry-utils/internal",
|
|
49
|
+
"@fluidframework/test-utils/internal",
|
|
50
|
+
"@fluidframework/test-runtime-utils/internal",
|
|
51
|
+
],
|
|
52
|
+
},
|
|
53
|
+
],
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
files: ["**/*.ts", "**/*.tsx", "**/*.mts", "**/*.cts"],
|
|
58
|
+
languageOptions: {
|
|
59
|
+
parserOptions: {
|
|
60
|
+
projectService: false,
|
|
61
|
+
project: ["./src/test/tsconfig.json"],
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
},
|
|
65
|
+
];
|
|
66
|
+
|
|
67
|
+
export default config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/azure-end-to-end-tests",
|
|
3
|
-
"version": "2.74.0
|
|
3
|
+
"version": "2.74.0",
|
|
4
4
|
"description": "Azure client end to end tests",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -33,29 +33,29 @@
|
|
|
33
33
|
"temp-directory": "nyc/.nyc_output"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@fluid-experimental/data-objects": "2.74.0
|
|
37
|
-
"@fluid-internal/client-utils": "2.74.0
|
|
38
|
-
"@fluid-internal/mocha-test-setup": "2.74.0
|
|
39
|
-
"@fluid-private/test-version-utils": "2.74.0
|
|
40
|
-
"@fluidframework/aqueduct": "2.74.0
|
|
41
|
-
"@fluidframework/azure-client": "2.74.0
|
|
36
|
+
"@fluid-experimental/data-objects": "~2.74.0",
|
|
37
|
+
"@fluid-internal/client-utils": "~2.74.0",
|
|
38
|
+
"@fluid-internal/mocha-test-setup": "~2.74.0",
|
|
39
|
+
"@fluid-private/test-version-utils": "~2.74.0",
|
|
40
|
+
"@fluidframework/aqueduct": "~2.74.0",
|
|
41
|
+
"@fluidframework/azure-client": "~2.74.0",
|
|
42
42
|
"@fluidframework/azure-client-legacy": "npm:@fluidframework/azure-client@^1.2.0",
|
|
43
|
-
"@fluidframework/container-definitions": "2.74.0
|
|
44
|
-
"@fluidframework/container-loader": "2.74.0
|
|
45
|
-
"@fluidframework/core-interfaces": "2.74.0
|
|
46
|
-
"@fluidframework/counter": "2.74.0
|
|
47
|
-
"@fluidframework/datastore-definitions": "2.74.0
|
|
48
|
-
"@fluidframework/fluid-static": "2.74.0
|
|
49
|
-
"@fluidframework/map": "2.74.0
|
|
43
|
+
"@fluidframework/container-definitions": "~2.74.0",
|
|
44
|
+
"@fluidframework/container-loader": "~2.74.0",
|
|
45
|
+
"@fluidframework/core-interfaces": "~2.74.0",
|
|
46
|
+
"@fluidframework/counter": "~2.74.0",
|
|
47
|
+
"@fluidframework/datastore-definitions": "~2.74.0",
|
|
48
|
+
"@fluidframework/fluid-static": "~2.74.0",
|
|
49
|
+
"@fluidframework/map": "~2.74.0",
|
|
50
50
|
"@fluidframework/map-legacy": "npm:@fluidframework/map@^1.4.0",
|
|
51
|
-
"@fluidframework/matrix": "2.74.0
|
|
52
|
-
"@fluidframework/presence": "2.74.0
|
|
53
|
-
"@fluidframework/runtime-definitions": "2.74.0
|
|
54
|
-
"@fluidframework/sequence": "2.74.0
|
|
55
|
-
"@fluidframework/telemetry-utils": "2.74.0
|
|
56
|
-
"@fluidframework/test-runtime-utils": "2.74.0
|
|
57
|
-
"@fluidframework/test-utils": "2.74.0
|
|
58
|
-
"@fluidframework/tree": "2.74.0
|
|
51
|
+
"@fluidframework/matrix": "~2.74.0",
|
|
52
|
+
"@fluidframework/presence": "~2.74.0",
|
|
53
|
+
"@fluidframework/runtime-definitions": "~2.74.0",
|
|
54
|
+
"@fluidframework/sequence": "~2.74.0",
|
|
55
|
+
"@fluidframework/telemetry-utils": "~2.74.0",
|
|
56
|
+
"@fluidframework/test-runtime-utils": "~2.74.0",
|
|
57
|
+
"@fluidframework/test-utils": "~2.74.0",
|
|
58
|
+
"@fluidframework/tree": "~2.74.0",
|
|
59
59
|
"axios": "^1.8.4",
|
|
60
60
|
"cross-env": "^7.0.3",
|
|
61
61
|
"mocha": "^10.8.2",
|
|
@@ -68,15 +68,16 @@
|
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@biomejs/biome": "~1.9.3",
|
|
70
70
|
"@fluidframework/build-common": "^2.0.3",
|
|
71
|
-
"@fluidframework/build-tools": "^0.
|
|
72
|
-
"@fluidframework/driver-definitions": "2.74.0
|
|
73
|
-
"@fluidframework/eslint-config-fluid": "2.74.0
|
|
71
|
+
"@fluidframework/build-tools": "^0.61.0",
|
|
72
|
+
"@fluidframework/driver-definitions": "~2.74.0",
|
|
73
|
+
"@fluidframework/eslint-config-fluid": "~2.74.0",
|
|
74
74
|
"@types/mocha": "^10.0.10",
|
|
75
75
|
"@types/nock": "^9.3.0",
|
|
76
76
|
"@types/node": "^18.19.0",
|
|
77
77
|
"@types/sinon": "^17.0.3",
|
|
78
78
|
"c8": "^10.1.3",
|
|
79
79
|
"eslint": "~8.57.1",
|
|
80
|
+
"jiti": "^2.6.1",
|
|
80
81
|
"nock": "^13.3.3",
|
|
81
82
|
"rimraf": "^4.4.0",
|
|
82
83
|
"typescript": "~5.4.5"
|