@fluidframework/container-definitions 2.70.0 → 2.71.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/.eslintrc.cjs +3 -0
- package/CHANGELOG.md +4 -0
- package/package.json +8 -15
package/.eslintrc.cjs
CHANGED
|
@@ -11,6 +11,9 @@ module.exports = {
|
|
|
11
11
|
rules: {
|
|
12
12
|
// TODO: Enabling this may require breaking changes.
|
|
13
13
|
"@typescript-eslint/consistent-indexed-object-style": "off",
|
|
14
|
+
|
|
15
|
+
// Disabled because the rule is crashing on this package - AB#51780
|
|
16
|
+
"@typescript-eslint/unbound-method": "off",
|
|
14
17
|
},
|
|
15
18
|
overrides: [
|
|
16
19
|
{
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/container-definitions",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.71.0",
|
|
4
4
|
"description": "Fluid container definitions",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"main": "lib/index.js",
|
|
48
48
|
"types": "lib/public.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/core-interfaces": "~2.
|
|
51
|
-
"@fluidframework/driver-definitions": "~2.
|
|
50
|
+
"@fluidframework/core-interfaces": "~2.71.0",
|
|
51
|
+
"@fluidframework/driver-definitions": "~2.71.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"@fluid-tools/build-cli": "^0.58.3",
|
|
57
57
|
"@fluidframework/build-common": "^2.0.3",
|
|
58
58
|
"@fluidframework/build-tools": "^0.58.3",
|
|
59
|
-
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.
|
|
60
|
-
"@fluidframework/eslint-config-fluid": "^
|
|
59
|
+
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.70.0",
|
|
60
|
+
"@fluidframework/eslint-config-fluid": "^7.0.0",
|
|
61
61
|
"@microsoft/api-extractor": "7.52.11",
|
|
62
62
|
"concurrently": "^8.2.1",
|
|
63
63
|
"copyfiles": "^2.4.1",
|
|
@@ -66,14 +66,7 @@
|
|
|
66
66
|
"typescript": "~5.4.5"
|
|
67
67
|
},
|
|
68
68
|
"typeValidation": {
|
|
69
|
-
"broken": {
|
|
70
|
-
"Interface_IContainerContext": {
|
|
71
|
-
"backCompat": false
|
|
72
|
-
},
|
|
73
|
-
"Interface_IContainerStorageService": {
|
|
74
|
-
"backCompat": false
|
|
75
|
-
}
|
|
76
|
-
},
|
|
69
|
+
"broken": {},
|
|
77
70
|
"entrypoint": "legacy"
|
|
78
71
|
},
|
|
79
72
|
"scripts": {
|
|
@@ -108,8 +101,8 @@
|
|
|
108
101
|
"ci:test": "echo No test for this package",
|
|
109
102
|
"ci:test:coverage": "echo No test for this package",
|
|
110
103
|
"clean": "rimraf --glob dist lib {alpha,beta,internal,legacy}.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
|
|
111
|
-
"eslint": "eslint --format stylish src",
|
|
112
|
-
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
104
|
+
"eslint": "eslint --quiet --format stylish src",
|
|
105
|
+
"eslint:fix": "eslint --quiet --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
113
106
|
"format": "npm run format:biome",
|
|
114
107
|
"format:biome": "biome check . --write",
|
|
115
108
|
"lint": "fluid-build . --task lint",
|