@azure/monitor-opentelemetry-exporter 1.0.0-alpha.20251010.1 → 1.0.0-alpha.20251014.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.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.53.0"
8
+ "packageVersion": "7.53.1"
9
9
  }
10
10
  ]
11
11
  }
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.20251010.1",
5
+ "version": "1.0.0-alpha.20251014.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,15 +55,19 @@
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
- "@azure/dev-tool": "^1.0.0",
66
69
  "@azure/core-util": "^1.13.1",
70
+ "@azure/dev-tool": "^1.0.0",
67
71
  "@azure/eslint-plugin-azure-sdk": "^3.0.0"
68
72
  },
69
73
  "dependencies": {
@@ -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": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
124
- "clean": "dev-tool run vendored rimraf --glob dist-esm types dist",
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": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
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]",