@fluid-experimental/odsp-end-to-end-tests 2.74.0-365691 → 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 +48 -0
- package/package.json +20 -19
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,48 @@
|
|
|
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
|
+
"import-x/namespace": "off",
|
|
16
|
+
"@typescript-eslint/consistent-type-imports": [
|
|
17
|
+
"error",
|
|
18
|
+
{
|
|
19
|
+
"fixStyle": "inline-type-imports",
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
"@typescript-eslint/no-import-type-side-effects": "error",
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
files: ["**/*.{ts,tsx}"],
|
|
27
|
+
ignores: ["**/src/test/**", "**/tests/**", "**/*.spec.ts", "**/*.test.ts"],
|
|
28
|
+
rules: {
|
|
29
|
+
"@typescript-eslint/consistent-type-exports": [
|
|
30
|
+
"error",
|
|
31
|
+
{
|
|
32
|
+
"fixMixedExportsWithInlineTypeSpecifier": true,
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
files: ["**/*.ts", "**/*.tsx", "**/*.mts", "**/*.cts"],
|
|
39
|
+
languageOptions: {
|
|
40
|
+
parserOptions: {
|
|
41
|
+
projectService: false,
|
|
42
|
+
project: ["./src/test/tsconfig.json"],
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
];
|
|
47
|
+
|
|
48
|
+
export default config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/odsp-end-to-end-tests",
|
|
3
|
-
"version": "2.74.0
|
|
3
|
+
"version": "2.74.0",
|
|
4
4
|
"description": "Odsp client end to end tests",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -33,22 +33,22 @@
|
|
|
33
33
|
"temp-directory": "nyc/.nyc_output"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@fluid-internal/mocha-test-setup": "2.74.0
|
|
37
|
-
"@fluid-private/test-version-utils": "2.74.0
|
|
38
|
-
"@fluidframework/aqueduct": "2.74.0
|
|
39
|
-
"@fluidframework/container-definitions": "2.74.0
|
|
40
|
-
"@fluidframework/container-loader": "2.74.0
|
|
41
|
-
"@fluidframework/core-interfaces": "2.74.0
|
|
42
|
-
"@fluidframework/counter": "2.74.0
|
|
43
|
-
"@fluidframework/fluid-static": "2.74.0
|
|
44
|
-
"@fluidframework/map": "2.74.0
|
|
45
|
-
"@fluidframework/matrix": "2.74.0
|
|
46
|
-
"@fluidframework/odsp-client": "2.74.0
|
|
47
|
-
"@fluidframework/odsp-doclib-utils": "2.74.0
|
|
48
|
-
"@fluidframework/odsp-driver-definitions": "2.74.0
|
|
49
|
-
"@fluidframework/sequence": "2.74.0
|
|
50
|
-
"@fluidframework/telemetry-utils": "2.74.0
|
|
51
|
-
"@fluidframework/test-utils": "2.74.0
|
|
36
|
+
"@fluid-internal/mocha-test-setup": "~2.74.0",
|
|
37
|
+
"@fluid-private/test-version-utils": "~2.74.0",
|
|
38
|
+
"@fluidframework/aqueduct": "~2.74.0",
|
|
39
|
+
"@fluidframework/container-definitions": "~2.74.0",
|
|
40
|
+
"@fluidframework/container-loader": "~2.74.0",
|
|
41
|
+
"@fluidframework/core-interfaces": "~2.74.0",
|
|
42
|
+
"@fluidframework/counter": "~2.74.0",
|
|
43
|
+
"@fluidframework/fluid-static": "~2.74.0",
|
|
44
|
+
"@fluidframework/map": "~2.74.0",
|
|
45
|
+
"@fluidframework/matrix": "~2.74.0",
|
|
46
|
+
"@fluidframework/odsp-client": "~2.74.0",
|
|
47
|
+
"@fluidframework/odsp-doclib-utils": "~2.74.0",
|
|
48
|
+
"@fluidframework/odsp-driver-definitions": "~2.74.0",
|
|
49
|
+
"@fluidframework/sequence": "~2.74.0",
|
|
50
|
+
"@fluidframework/telemetry-utils": "~2.74.0",
|
|
51
|
+
"@fluidframework/test-utils": "~2.74.0",
|
|
52
52
|
"@types/sinon": "^17.0.3",
|
|
53
53
|
"mocha": "^10.8.2",
|
|
54
54
|
"mocha-multi-reporters": "^1.5.1",
|
|
@@ -58,14 +58,15 @@
|
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@biomejs/biome": "~1.9.3",
|
|
60
60
|
"@fluidframework/build-common": "^2.0.3",
|
|
61
|
-
"@fluidframework/build-tools": "^0.
|
|
62
|
-
"@fluidframework/eslint-config-fluid": "2.74.0
|
|
61
|
+
"@fluidframework/build-tools": "^0.61.0",
|
|
62
|
+
"@fluidframework/eslint-config-fluid": "~2.74.0",
|
|
63
63
|
"@types/mocha": "^10.0.10",
|
|
64
64
|
"@types/nock": "^9.3.0",
|
|
65
65
|
"@types/node": "^18.19.0",
|
|
66
66
|
"c8": "^10.1.3",
|
|
67
67
|
"cross-env": "^7.0.3",
|
|
68
68
|
"eslint": "~8.57.1",
|
|
69
|
+
"jiti": "^2.6.1",
|
|
69
70
|
"nock": "^13.3.3",
|
|
70
71
|
"rimraf": "^4.4.0",
|
|
71
72
|
"typescript": "~5.4.5"
|