@fluidframework/runtime-definitions 2.30.0 → 2.31.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 +419 -415
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +9 -17
- package/prettier.config.cjs +0 -8
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/runtime-definitions",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
4
4
|
"description": "Fluid Runtime definitions",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"main": "lib/index.js",
|
|
48
48
|
"types": "lib/public.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/container-definitions": "~2.
|
|
51
|
-
"@fluidframework/core-interfaces": "~2.
|
|
52
|
-
"@fluidframework/driver-definitions": "~2.
|
|
53
|
-
"@fluidframework/id-compressor": "~2.
|
|
54
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
50
|
+
"@fluidframework/container-definitions": "~2.31.0",
|
|
51
|
+
"@fluidframework/core-interfaces": "~2.31.0",
|
|
52
|
+
"@fluidframework/driver-definitions": "~2.31.0",
|
|
53
|
+
"@fluidframework/id-compressor": "~2.31.0",
|
|
54
|
+
"@fluidframework/telemetry-utils": "~2.31.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
@@ -60,22 +60,16 @@
|
|
|
60
60
|
"@fluidframework/build-common": "^2.0.3",
|
|
61
61
|
"@fluidframework/build-tools": "^0.54.0",
|
|
62
62
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
63
|
-
"@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.
|
|
64
|
-
"@microsoft/api-extractor": "7.
|
|
63
|
+
"@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.30.0",
|
|
64
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
65
65
|
"concurrently": "^8.2.1",
|
|
66
66
|
"copyfiles": "^2.4.1",
|
|
67
67
|
"eslint": "~8.55.0",
|
|
68
|
-
"prettier": "~3.0.3",
|
|
69
68
|
"rimraf": "^4.4.0",
|
|
70
69
|
"typescript": "~5.4.5"
|
|
71
70
|
},
|
|
72
71
|
"typeValidation": {
|
|
73
|
-
"broken": {
|
|
74
|
-
"Interface_IFluidDataStoreChannel": {
|
|
75
|
-
"forwardCompat": false,
|
|
76
|
-
"backCompat": false
|
|
77
|
-
}
|
|
78
|
-
},
|
|
72
|
+
"broken": {},
|
|
79
73
|
"entrypoint": "legacy"
|
|
80
74
|
},
|
|
81
75
|
"scripts": {
|
|
@@ -101,7 +95,6 @@
|
|
|
101
95
|
"check:exports:esm:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json",
|
|
102
96
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
103
97
|
"check:format": "npm run check:biome",
|
|
104
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
105
98
|
"ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
|
|
106
99
|
"ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
|
|
107
100
|
"ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
|
|
@@ -111,7 +104,6 @@
|
|
|
111
104
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
112
105
|
"format": "npm run format:biome",
|
|
113
106
|
"format:biome": "biome check . --write",
|
|
114
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
115
107
|
"lint": "fluid-build . --task lint",
|
|
116
108
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
117
109
|
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
|