@fluid-experimental/tree 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 +41 -0
- package/package.json +26 -25
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,41 @@
|
|
|
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 { minimalDeprecated } from '../../../common/build/eslint-config-fluid/flat.mts';
|
|
8
|
+
|
|
9
|
+
const config: Linter.Config[] = [
|
|
10
|
+
...minimalDeprecated,
|
|
11
|
+
{
|
|
12
|
+
rules: {
|
|
13
|
+
'@typescript-eslint/no-shadow': 'off',
|
|
14
|
+
'no-shadow': 'off',
|
|
15
|
+
'@typescript-eslint/no-unsafe-return': 'off',
|
|
16
|
+
'import-x/no-deprecated': 'off',
|
|
17
|
+
'@fluid-internal/fluid/no-unchecked-record-access': 'off',
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
files: ['src/test/**'],
|
|
22
|
+
rules: {
|
|
23
|
+
'@typescript-eslint/no-unused-expressions': 'off',
|
|
24
|
+
'import-x/no-extraneous-dependencies': [
|
|
25
|
+
'error',
|
|
26
|
+
{
|
|
27
|
+
'devDependencies': true,
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
'import-x/no-internal-modules': 'off',
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
files: ['**/test/**', 'src/index.ts'],
|
|
35
|
+
rules: {
|
|
36
|
+
'import-x/no-unused-modules': 'off',
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
];
|
|
40
|
+
|
|
41
|
+
export default config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/tree",
|
|
3
|
-
"version": "2.74.0
|
|
3
|
+
"version": "2.74.0",
|
|
4
4
|
"description": "Distributed tree",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
"main": "lib/index.js",
|
|
28
28
|
"types": "lib/index.d.ts",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@fluid-internal/client-utils": "2.74.0
|
|
31
|
-
"@fluidframework/container-definitions": "2.74.0
|
|
32
|
-
"@fluidframework/core-interfaces": "2.74.0
|
|
33
|
-
"@fluidframework/core-utils": "2.74.0
|
|
34
|
-
"@fluidframework/datastore-definitions": "2.74.0
|
|
35
|
-
"@fluidframework/driver-definitions": "2.74.0
|
|
36
|
-
"@fluidframework/id-compressor": "2.74.0
|
|
37
|
-
"@fluidframework/runtime-definitions": "2.74.0
|
|
38
|
-
"@fluidframework/runtime-utils": "2.74.0
|
|
39
|
-
"@fluidframework/shared-object-base": "2.74.0
|
|
40
|
-
"@fluidframework/telemetry-utils": "2.74.0
|
|
41
|
-
"@fluidframework/tree": "2.74.0
|
|
30
|
+
"@fluid-internal/client-utils": "~2.74.0",
|
|
31
|
+
"@fluidframework/container-definitions": "~2.74.0",
|
|
32
|
+
"@fluidframework/core-interfaces": "~2.74.0",
|
|
33
|
+
"@fluidframework/core-utils": "~2.74.0",
|
|
34
|
+
"@fluidframework/datastore-definitions": "~2.74.0",
|
|
35
|
+
"@fluidframework/driver-definitions": "~2.74.0",
|
|
36
|
+
"@fluidframework/id-compressor": "~2.74.0",
|
|
37
|
+
"@fluidframework/runtime-definitions": "~2.74.0",
|
|
38
|
+
"@fluidframework/runtime-utils": "~2.74.0",
|
|
39
|
+
"@fluidframework/shared-object-base": "~2.74.0",
|
|
40
|
+
"@fluidframework/telemetry-utils": "~2.74.0",
|
|
41
|
+
"@fluidframework/tree": "~2.74.0",
|
|
42
42
|
"@tylerbu/sorted-btree-es6": "^1.8.0",
|
|
43
43
|
"buffer": "^6.0.3",
|
|
44
44
|
"denque": "^1.5.1",
|
|
@@ -48,20 +48,20 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
50
50
|
"@biomejs/biome": "~1.9.3",
|
|
51
|
-
"@fluid-internal/mocha-test-setup": "2.74.0
|
|
52
|
-
"@fluid-private/stochastic-test-utils": "2.74.0
|
|
53
|
-
"@fluid-private/test-drivers": "2.74.0
|
|
51
|
+
"@fluid-internal/mocha-test-setup": "~2.74.0",
|
|
52
|
+
"@fluid-private/stochastic-test-utils": "~2.74.0",
|
|
53
|
+
"@fluid-private/test-drivers": "~2.74.0",
|
|
54
54
|
"@fluid-tools/benchmark": "^0.51.0",
|
|
55
55
|
"@fluidframework/build-common": "^2.0.3",
|
|
56
|
-
"@fluidframework/build-tools": "^0.
|
|
57
|
-
"@fluidframework/container-definitions": "2.74.0
|
|
58
|
-
"@fluidframework/container-loader": "2.74.0
|
|
59
|
-
"@fluidframework/container-runtime": "2.74.0
|
|
60
|
-
"@fluidframework/eslint-config-fluid": "2.74.0
|
|
61
|
-
"@fluidframework/runtime-utils": "2.74.0
|
|
62
|
-
"@fluidframework/test-runtime-utils": "2.74.0
|
|
63
|
-
"@fluidframework/test-utils": "2.74.0
|
|
64
|
-
"@fluidframework/undo-redo": "2.74.0
|
|
56
|
+
"@fluidframework/build-tools": "^0.61.0",
|
|
57
|
+
"@fluidframework/container-definitions": "~2.74.0",
|
|
58
|
+
"@fluidframework/container-loader": "~2.74.0",
|
|
59
|
+
"@fluidframework/container-runtime": "~2.74.0",
|
|
60
|
+
"@fluidframework/eslint-config-fluid": "~2.74.0",
|
|
61
|
+
"@fluidframework/runtime-utils": "~2.74.0",
|
|
62
|
+
"@fluidframework/test-runtime-utils": "~2.74.0",
|
|
63
|
+
"@fluidframework/test-utils": "~2.74.0",
|
|
64
|
+
"@fluidframework/undo-redo": "~2.74.0",
|
|
65
65
|
"@microsoft/api-extractor": "7.52.11",
|
|
66
66
|
"@types/chai": "^4.0.0",
|
|
67
67
|
"@types/lru-cache": "^5.1.0",
|
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
"env-cmd": "^10.1.0",
|
|
76
76
|
"eslint": "~8.57.1",
|
|
77
77
|
"eslint-config-prettier": "~10.1.8",
|
|
78
|
+
"jiti": "^2.6.1",
|
|
78
79
|
"mocha": "^10.8.2",
|
|
79
80
|
"mocha-multi-reporters": "^1.5.1",
|
|
80
81
|
"rimraf": "^4.4.0",
|