@fluidframework/telemetry-utils 2.0.0-dev.7.3.0.212138 → 2.0.0-dev.7.4.0.214930
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/api-extractor.json +9 -2
- package/dist/telemetry-utils-alpha.d.ts +670 -0
- package/dist/telemetry-utils-beta.d.ts +670 -0
- package/dist/telemetry-utils-public.d.ts +670 -0
- package/dist/telemetry-utils-untrimmed.d.ts +911 -0
- package/lib/telemetry-utils-alpha.d.ts +670 -0
- package/lib/telemetry-utils-beta.d.ts +670 -0
- package/lib/telemetry-utils-public.d.ts +670 -0
- package/lib/telemetry-utils-untrimmed.d.ts +911 -0
- package/package.json +24 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/telemetry-utils",
|
|
3
|
-
"version": "2.0.0-dev.7.
|
|
3
|
+
"version": "2.0.0-dev.7.4.0.214930",
|
|
4
4
|
"description": "Collection of telemetry relates utilities for Fluid",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"temp-directory": "nyc/.nyc_output"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@fluid-internal/client-utils": "2.0.0-dev.7.
|
|
43
|
-
"@fluidframework/core-interfaces": "2.0.0-dev.7.
|
|
44
|
-
"@fluidframework/core-utils": "2.0.0-dev.7.
|
|
42
|
+
"@fluid-internal/client-utils": "2.0.0-dev.7.4.0.214930",
|
|
43
|
+
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.214930",
|
|
44
|
+
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.214930",
|
|
45
45
|
"@fluidframework/protocol-definitions": "^3.0.0",
|
|
46
46
|
"debug": "^4.3.4",
|
|
47
47
|
"events": "^3.1.0",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@fluidframework/build-common": "^2.0.3",
|
|
53
53
|
"@fluidframework/build-tools": "^0.28.0",
|
|
54
54
|
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
55
|
-
"@fluidframework/mocha-test-setup": "2.0.0-dev.7.
|
|
55
|
+
"@fluidframework/mocha-test-setup": "2.0.0-dev.7.4.0.214930",
|
|
56
56
|
"@fluidframework/telemetry-utils-previous": "npm:@fluidframework/telemetry-utils@2.0.0-internal.7.2.0",
|
|
57
57
|
"@microsoft/api-extractor": "^7.38.3",
|
|
58
58
|
"@types/debug": "^4.1.5",
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"@types/node": "^16.18.38",
|
|
62
62
|
"@types/uuid": "^9.0.2",
|
|
63
63
|
"c8": "^7.7.1",
|
|
64
|
+
"copyfiles": "^2.4.1",
|
|
64
65
|
"cross-env": "^7.0.3",
|
|
65
66
|
"eslint": "~8.50.0",
|
|
66
67
|
"mocha": "^10.2.0",
|
|
@@ -72,14 +73,29 @@
|
|
|
72
73
|
"sinon": "^7.4.2",
|
|
73
74
|
"typescript": "~5.1.6"
|
|
74
75
|
},
|
|
76
|
+
"fluidBuild": {
|
|
77
|
+
"tasks": {
|
|
78
|
+
"build:docs": {
|
|
79
|
+
"dependsOn": [
|
|
80
|
+
"...",
|
|
81
|
+
"api-extractor:commonjs",
|
|
82
|
+
"api-extractor:esnext"
|
|
83
|
+
],
|
|
84
|
+
"script": false
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
75
88
|
"typeValidation": {
|
|
76
89
|
"broken": {}
|
|
77
90
|
},
|
|
78
91
|
"scripts": {
|
|
92
|
+
"api": "fluid-build . --task api",
|
|
93
|
+
"api-extractor:commonjs": "api-extractor run --local",
|
|
94
|
+
"api-extractor:esnext": "copyfiles -u 1 \"dist/**/*-@(alpha|beta|public|untrimmed).d.ts\" lib",
|
|
79
95
|
"build": "fluid-build . --task build",
|
|
80
96
|
"build:commonjs": "fluid-build . --task commonjs",
|
|
81
97
|
"build:compile": "fluid-build . --task compile",
|
|
82
|
-
"build:docs": "
|
|
98
|
+
"build:docs": "fluid-build . --task api",
|
|
83
99
|
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
84
100
|
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
85
101
|
"bump-version": "npm version minor --no-push --no-git-tag-version && npm run build:genver",
|
|
@@ -90,8 +106,8 @@
|
|
|
90
106
|
"format": "npm run prettier:fix",
|
|
91
107
|
"lint": "npm run prettier && npm run eslint",
|
|
92
108
|
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
|
|
93
|
-
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
94
|
-
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
109
|
+
"prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
110
|
+
"prettier:fix": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
95
111
|
"test": "npm run test:mocha",
|
|
96
112
|
"test:coverage": "c8 npm test",
|
|
97
113
|
"test:mocha": "mocha --ignore \"dist/test/types/*\" --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup",
|