@azure/monitor-opentelemetry-exporter 1.0.0-alpha.20251013.1 → 1.0.0-alpha.20251016.1
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/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@azure/monitor-opentelemetry-exporter",
|
|
3
3
|
"author": "Microsoft Corporation",
|
|
4
4
|
"sdk-type": "client",
|
|
5
|
-
"version": "1.0.0-alpha.
|
|
5
|
+
"version": "1.0.0-alpha.20251016.1",
|
|
6
6
|
"description": "Application Insights exporter for the OpenTelemetry JavaScript (Node.js) SDK",
|
|
7
7
|
"main": "./dist/commonjs/index.js",
|
|
8
8
|
"module": "./dist/esm/index.js",
|
|
@@ -55,16 +55,20 @@
|
|
|
55
55
|
"@types/node": "^20.19.0",
|
|
56
56
|
"@vitest/browser": "^3.2.3",
|
|
57
57
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
58
|
+
"cross-env": "^7.0.3",
|
|
58
59
|
"dotenv": "^16.0.0",
|
|
59
60
|
"eslint": "^9.33.0",
|
|
60
61
|
"nock": "^13.5.4",
|
|
61
62
|
"playwright": "^1.50.1",
|
|
63
|
+
"prettier": "^3.6.2",
|
|
64
|
+
"rimraf": "^6.0.1",
|
|
65
|
+
"tshy": "^3.0.0",
|
|
62
66
|
"typescript": "~5.9.3",
|
|
63
67
|
"vitest": "^3.2.3",
|
|
64
68
|
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
65
69
|
"@azure/core-util": "^1.13.1",
|
|
66
|
-
"@azure/
|
|
67
|
-
"@azure/
|
|
70
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
71
|
+
"@azure/dev-tool": "^1.0.0"
|
|
68
72
|
},
|
|
69
73
|
"dependencies": {
|
|
70
74
|
"@azure/core-auth": "^1.9.0",
|
|
@@ -120,11 +124,11 @@
|
|
|
120
124
|
"scripts": {
|
|
121
125
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
122
126
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
123
|
-
"check-format": "
|
|
124
|
-
"clean": "
|
|
127
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
128
|
+
"clean": "rimraf --glob dist-esm types dist",
|
|
125
129
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
126
130
|
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
127
|
-
"format": "
|
|
131
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
128
132
|
"generate:client": "autorest --typescript ./swagger/README.md",
|
|
129
133
|
"lint": "eslint package.json src test",
|
|
130
134
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|