@fluidframework/fluid-telemetry 2.13.0 → 2.21.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/dist/package.json +2 -1
- package/package.json +10 -10
- package/tsconfig.json +1 -4
package/CHANGELOG.md
CHANGED
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/fluid-telemetry",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.21.0",
|
|
4
4
|
"description": "Customer facing Fluid telemetry types and classes for both producing and consuming said telemetry",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,22 +47,22 @@
|
|
|
47
47
|
"main": "lib/index.js",
|
|
48
48
|
"types": "lib/index.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/container-definitions": "~2.
|
|
51
|
-
"@fluidframework/container-loader": "~2.
|
|
52
|
-
"@fluidframework/fluid-static": "~2.
|
|
50
|
+
"@fluidframework/container-definitions": "~2.21.0",
|
|
51
|
+
"@fluidframework/container-loader": "~2.21.0",
|
|
52
|
+
"@fluidframework/fluid-static": "~2.21.0",
|
|
53
53
|
"@microsoft/applicationinsights-web": "^2.8.11",
|
|
54
54
|
"uuid": "^9.0.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
58
58
|
"@biomejs/biome": "~1.9.3",
|
|
59
|
-
"@fluid-internal/client-utils": "~2.
|
|
60
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
59
|
+
"@fluid-internal/client-utils": "~2.21.0",
|
|
60
|
+
"@fluid-internal/mocha-test-setup": "~2.21.0",
|
|
61
61
|
"@fluid-tools/build-cli": "^0.51.0",
|
|
62
62
|
"@fluidframework/build-tools": "^0.51.0",
|
|
63
|
-
"@fluidframework/test-utils": "~2.
|
|
64
|
-
"@fluidframework/tinylicious-client": "~2.
|
|
65
|
-
"@fluidframework/tree": "~2.
|
|
63
|
+
"@fluidframework/test-utils": "~2.21.0",
|
|
64
|
+
"@fluidframework/tinylicious-client": "~2.21.0",
|
|
65
|
+
"@fluidframework/tree": "~2.21.0",
|
|
66
66
|
"@microsoft/api-extractor": "7.47.8",
|
|
67
67
|
"@types/chai": "^4.0.0",
|
|
68
68
|
"@types/mocha": "^10.0.10",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"check:format": "npm run check:biome",
|
|
119
119
|
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
|
120
120
|
"ci:build:docs": "api-extractor run",
|
|
121
|
-
"clean": "rimraf --glob _api-extractor-temp coverage dist lib
|
|
121
|
+
"clean": "rimraf --glob _api-extractor-temp coverage dist lib {alpha,beta,internal,legacy}.d.ts nyc \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
|
122
122
|
"eslint": "eslint --format stylish src",
|
|
123
123
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
124
124
|
"format": "npm run format:biome",
|
package/tsconfig.json
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends":
|
|
3
|
-
"../../../../common/build/build-common/tsconfig.base.json",
|
|
4
|
-
"../../../../common/build/build-common/tsconfig.cjs.json",
|
|
5
|
-
],
|
|
2
|
+
"extends": "../../../../common/build/build-common/tsconfig.node16.json",
|
|
6
3
|
"include": ["src/**/*"],
|
|
7
4
|
"compilerOptions": {
|
|
8
5
|
"rootDir": "src",
|