@fluid-experimental/property-dds 2.91.0 → 2.93.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 +24 -4
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
package/eslint.config.mts
CHANGED
|
@@ -4,22 +4,42 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { Linter } from "eslint";
|
|
7
|
-
import {
|
|
7
|
+
import { recommended } from "@fluidframework/eslint-config-fluid/flat.mts";
|
|
8
8
|
|
|
9
9
|
const config: Linter.Config[] = [
|
|
10
|
-
...
|
|
10
|
+
...recommended,
|
|
11
11
|
{
|
|
12
12
|
rules: {
|
|
13
|
+
"@fluid-internal/fluid/no-unchecked-record-access": "warn",
|
|
14
|
+
"@typescript-eslint/consistent-type-exports": "off",
|
|
15
|
+
"@typescript-eslint/consistent-type-imports": "off",
|
|
13
16
|
"@typescript-eslint/explicit-function-return-type": "warn",
|
|
17
|
+
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
18
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
19
|
+
"@typescript-eslint/no-unsafe-argument": "off",
|
|
20
|
+
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
21
|
+
"@typescript-eslint/no-unsafe-call": "off",
|
|
22
|
+
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
14
23
|
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
15
|
-
"tsdoc/syntax": "off",
|
|
16
|
-
"@fluid-internal/fluid/no-unchecked-record-access": "warn",
|
|
17
24
|
"depend/ban-dependencies": [
|
|
18
25
|
"error",
|
|
19
26
|
{
|
|
20
27
|
"allowed": ["axios", "lodash"],
|
|
21
28
|
},
|
|
22
29
|
],
|
|
30
|
+
"no-void": "off",
|
|
31
|
+
"tsdoc/syntax": "off",
|
|
32
|
+
"unicorn/catch-error-name": "off",
|
|
33
|
+
"unicorn/explicit-length-check": "off",
|
|
34
|
+
"unicorn/no-array-for-each": "off",
|
|
35
|
+
"unicorn/no-array-reduce": "off",
|
|
36
|
+
"unicorn/no-await-expression-member": "off",
|
|
37
|
+
"unicorn/no-negated-condition": "off",
|
|
38
|
+
"unicorn/no-object-as-default-parameter": "off",
|
|
39
|
+
"unicorn/prefer-node-protocol": "off",
|
|
40
|
+
"unicorn/prefer-optional-catch-binding": "off",
|
|
41
|
+
"unicorn/prefer-spread": "off",
|
|
42
|
+
"unicorn/switch-case-braces": "off",
|
|
23
43
|
},
|
|
24
44
|
},
|
|
25
45
|
];
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/property-dds",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.93.0",
|
|
4
4
|
"description": "definition of the property distributed data store",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"main": "lib/index.js",
|
|
28
28
|
"types": "lib/index.d.ts",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@fluid-experimental/property-changeset": "~2.
|
|
31
|
-
"@fluid-experimental/property-properties": "~2.
|
|
32
|
-
"@fluid-internal/client-utils": "~2.
|
|
33
|
-
"@fluidframework/container-definitions": "~2.
|
|
34
|
-
"@fluidframework/core-interfaces": "~2.
|
|
35
|
-
"@fluidframework/datastore-definitions": "~2.
|
|
36
|
-
"@fluidframework/driver-definitions": "~2.
|
|
37
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
38
|
-
"@fluidframework/runtime-utils": "~2.
|
|
39
|
-
"@fluidframework/shared-object-base": "~2.
|
|
40
|
-
"axios": "^1.
|
|
30
|
+
"@fluid-experimental/property-changeset": "~2.93.0",
|
|
31
|
+
"@fluid-experimental/property-properties": "~2.93.0",
|
|
32
|
+
"@fluid-internal/client-utils": "~2.93.0",
|
|
33
|
+
"@fluidframework/container-definitions": "~2.93.0",
|
|
34
|
+
"@fluidframework/core-interfaces": "~2.93.0",
|
|
35
|
+
"@fluidframework/datastore-definitions": "~2.93.0",
|
|
36
|
+
"@fluidframework/driver-definitions": "~2.93.0",
|
|
37
|
+
"@fluidframework/runtime-definitions": "~2.93.0",
|
|
38
|
+
"@fluidframework/runtime-utils": "~2.93.0",
|
|
39
|
+
"@fluidframework/shared-object-base": "~2.93.0",
|
|
40
|
+
"axios": "^1.15.0",
|
|
41
41
|
"buffer": "^6.0.3",
|
|
42
42
|
"lodash": "^4.17.21",
|
|
43
43
|
"lz4js": "^0.2.0",
|
|
@@ -48,24 +48,24 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
50
50
|
"@biomejs/biome": "~2.4.5",
|
|
51
|
-
"@fluid-experimental/property-common": "~2.
|
|
52
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
53
|
-
"@fluid-private/test-drivers": "~2.
|
|
54
|
-
"@fluid-tools/build-cli": "^0.
|
|
51
|
+
"@fluid-experimental/property-common": "~2.93.0",
|
|
52
|
+
"@fluid-internal/mocha-test-setup": "~2.93.0",
|
|
53
|
+
"@fluid-private/test-drivers": "~2.93.0",
|
|
54
|
+
"@fluid-tools/build-cli": "^0.64.0",
|
|
55
55
|
"@fluidframework/build-common": "^2.0.3",
|
|
56
|
-
"@fluidframework/build-tools": "^0.
|
|
57
|
-
"@fluidframework/container-loader": "~2.
|
|
58
|
-
"@fluidframework/container-runtime": "~2.
|
|
59
|
-
"@fluidframework/local-driver": "~2.
|
|
60
|
-
"@fluidframework/sequence": "~2.
|
|
56
|
+
"@fluidframework/build-tools": "^0.64.0",
|
|
57
|
+
"@fluidframework/container-loader": "~2.93.0",
|
|
58
|
+
"@fluidframework/container-runtime": "~2.93.0",
|
|
59
|
+
"@fluidframework/local-driver": "~2.93.0",
|
|
60
|
+
"@fluidframework/sequence": "~2.93.0",
|
|
61
61
|
"@fluidframework/server-local-server": "^7.0.0",
|
|
62
|
-
"@fluidframework/test-runtime-utils": "~2.
|
|
63
|
-
"@fluidframework/test-utils": "~2.
|
|
64
|
-
"@microsoft/api-extractor": "7.
|
|
62
|
+
"@fluidframework/test-runtime-utils": "~2.93.0",
|
|
63
|
+
"@fluidframework/test-utils": "~2.93.0",
|
|
64
|
+
"@microsoft/api-extractor": "7.58.1",
|
|
65
65
|
"@types/lodash": "^4.14.118",
|
|
66
66
|
"@types/mocha": "^10.0.10",
|
|
67
|
-
"@types/node": "~
|
|
68
|
-
"chai": "^4.
|
|
67
|
+
"@types/node": "~22.19.17",
|
|
68
|
+
"chai": "^4.5.0",
|
|
69
69
|
"copyfiles": "^2.4.1",
|
|
70
70
|
"cross-env": "^10.1.0",
|
|
71
71
|
"easy-table": "^1.2.0",
|