@azure/identity-vscode 2.1.0-alpha.20251013.2 → 2.1.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 +8 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/identity-vscode",
|
|
3
|
-
"version": "2.1.0-alpha.
|
|
3
|
+
"version": "2.1.0-alpha.20251014.1",
|
|
4
4
|
"sdk-type": "client",
|
|
5
5
|
"description": "Use the Azure Account extension for Visual Studio Code to authenticate with Azure Identity",
|
|
6
6
|
"main": "./dist/commonjs/index.js",
|
|
@@ -44,9 +44,13 @@
|
|
|
44
44
|
"@types/node": "^20.19.0",
|
|
45
45
|
"@vitest/browser": "^3.2.3",
|
|
46
46
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
47
|
+
"cross-env": "^7.0.3",
|
|
47
48
|
"dotenv": "^16.0.0",
|
|
48
49
|
"eslint": "^9.33.0",
|
|
49
50
|
"playwright": "^1.50.1",
|
|
51
|
+
"prettier": "^3.6.2",
|
|
52
|
+
"rimraf": "^6.0.1",
|
|
53
|
+
"tshy": "^3.0.0",
|
|
50
54
|
"typescript": "~5.9.3",
|
|
51
55
|
"vitest": "^3.2.3",
|
|
52
56
|
"@azure-tools/test-recorder": "^4.1.1",
|
|
@@ -97,11 +101,11 @@
|
|
|
97
101
|
"scripts": {
|
|
98
102
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
99
103
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
100
|
-
"check-format": "
|
|
101
|
-
"clean": "
|
|
104
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"",
|
|
105
|
+
"clean": "rimraf --glob dist dist-* types *.tgz *.log",
|
|
102
106
|
"execute:samples": "echo skipped",
|
|
103
107
|
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
104
|
-
"format": "
|
|
108
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"",
|
|
105
109
|
"lint": "eslint package.json src test",
|
|
106
110
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
107
111
|
"pack": "pnpm pack 2>&1",
|