@azure/monitor-ingestion 1.2.0-alpha.20251010.1 → 1.2.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/monitor-ingestion",
|
|
3
|
-
"version": "1.2.0-alpha.
|
|
3
|
+
"version": "1.2.0-alpha.20251014.1",
|
|
4
4
|
"description": "Azure Monitor Ingestion library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"azure",
|
|
@@ -67,14 +67,18 @@
|
|
|
67
67
|
"@types/pako": "^2.0.0",
|
|
68
68
|
"@vitest/browser": "^3.2.3",
|
|
69
69
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
70
|
+
"cross-env": "^7.0.3",
|
|
70
71
|
"dotenv": "^16.0.0",
|
|
71
72
|
"eslint": "^9.33.0",
|
|
72
73
|
"playwright": "^1.50.1",
|
|
74
|
+
"prettier": "^3.6.2",
|
|
75
|
+
"rimraf": "^6.0.1",
|
|
76
|
+
"tshy": "^3.0.0",
|
|
73
77
|
"typescript": "~5.9.3",
|
|
74
78
|
"vitest": "^3.2.3",
|
|
75
79
|
"@azure-tools/test-credential": "^2.1.2",
|
|
76
|
-
"@azure-tools/test-recorder": "^4.1.1",
|
|
77
80
|
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
81
|
+
"@azure-tools/test-recorder": "^4.1.1",
|
|
78
82
|
"@azure/dev-tool": "^1.0.0",
|
|
79
83
|
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
80
84
|
},
|
|
@@ -127,11 +131,11 @@
|
|
|
127
131
|
"scripts": {
|
|
128
132
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
129
133
|
"build:samples": "dev-tool samples run samples-dev",
|
|
130
|
-
"check-format": "
|
|
131
|
-
"clean": "
|
|
134
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
135
|
+
"clean": "rimraf --glob dist dist-* temp types *.tgz *.log",
|
|
132
136
|
"execute:samples": "echo Obsolete",
|
|
133
137
|
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
134
|
-
"format": "
|
|
138
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
135
139
|
"generate:client": "autorest --typescript ./swagger/README.md",
|
|
136
140
|
"lint": "eslint package.json src test",
|
|
137
141
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|