@fluidframework/odsp-client 2.74.0-368706 → 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 +11 -0
- package/package.json +19 -18
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
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 { strict } from "../../../common/build/eslint-config-fluid/flat.mts";
|
|
8
|
+
|
|
9
|
+
const config: Linter.Config[] = [...strict];
|
|
10
|
+
|
|
11
|
+
export default config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/odsp-client",
|
|
3
|
-
"version": "2.74.0
|
|
3
|
+
"version": "2.74.0",
|
|
4
4
|
"description": "A tool to enable creation and loading of Fluid containers using the ODSP service",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,29 +69,29 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluid-internal/client-utils": "2.74.0
|
|
73
|
-
"@fluidframework/container-definitions": "2.74.0
|
|
74
|
-
"@fluidframework/container-loader": "2.74.0
|
|
75
|
-
"@fluidframework/core-interfaces": "2.74.0
|
|
76
|
-
"@fluidframework/core-utils": "2.74.0
|
|
77
|
-
"@fluidframework/driver-definitions": "2.74.0
|
|
78
|
-
"@fluidframework/fluid-static": "2.74.0
|
|
79
|
-
"@fluidframework/map": "2.74.0
|
|
80
|
-
"@fluidframework/odsp-doclib-utils": "2.74.0
|
|
81
|
-
"@fluidframework/odsp-driver": "2.74.0
|
|
82
|
-
"@fluidframework/odsp-driver-definitions": "2.74.0
|
|
83
|
-
"@fluidframework/telemetry-utils": "2.74.0
|
|
72
|
+
"@fluid-internal/client-utils": "~2.74.0",
|
|
73
|
+
"@fluidframework/container-definitions": "~2.74.0",
|
|
74
|
+
"@fluidframework/container-loader": "~2.74.0",
|
|
75
|
+
"@fluidframework/core-interfaces": "~2.74.0",
|
|
76
|
+
"@fluidframework/core-utils": "~2.74.0",
|
|
77
|
+
"@fluidframework/driver-definitions": "~2.74.0",
|
|
78
|
+
"@fluidframework/fluid-static": "~2.74.0",
|
|
79
|
+
"@fluidframework/map": "~2.74.0",
|
|
80
|
+
"@fluidframework/odsp-doclib-utils": "~2.74.0",
|
|
81
|
+
"@fluidframework/odsp-driver": "~2.74.0",
|
|
82
|
+
"@fluidframework/odsp-driver-definitions": "~2.74.0",
|
|
83
|
+
"@fluidframework/telemetry-utils": "~2.74.0",
|
|
84
84
|
"uuid": "^11.1.0"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
87
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
88
88
|
"@biomejs/biome": "~1.9.3",
|
|
89
|
-
"@fluid-internal/mocha-test-setup": "2.74.0
|
|
90
|
-
"@fluid-tools/build-cli": "^0.
|
|
89
|
+
"@fluid-internal/mocha-test-setup": "~2.74.0",
|
|
90
|
+
"@fluid-tools/build-cli": "^0.61.0",
|
|
91
91
|
"@fluidframework/build-common": "^2.0.3",
|
|
92
|
-
"@fluidframework/build-tools": "^0.
|
|
93
|
-
"@fluidframework/eslint-config-fluid": "2.74.0
|
|
94
|
-
"@fluidframework/test-utils": "2.74.0
|
|
92
|
+
"@fluidframework/build-tools": "^0.61.0",
|
|
93
|
+
"@fluidframework/eslint-config-fluid": "~2.74.0",
|
|
94
|
+
"@fluidframework/test-utils": "~2.74.0",
|
|
95
95
|
"@microsoft/api-extractor": "7.52.11",
|
|
96
96
|
"@types/mocha": "^10.0.10",
|
|
97
97
|
"@types/node": "^18.19.0",
|
|
@@ -100,6 +100,7 @@
|
|
|
100
100
|
"copyfiles": "^2.4.1",
|
|
101
101
|
"cross-env": "^7.0.3",
|
|
102
102
|
"eslint": "~8.57.1",
|
|
103
|
+
"jiti": "^2.6.1",
|
|
103
104
|
"mocha": "^10.8.2",
|
|
104
105
|
"rimraf": "^4.4.0",
|
|
105
106
|
"typescript": "~5.4.5"
|