@azure/app-configuration 1.9.1-alpha.20250808.1 → 1.9.1-alpha.20250822.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 +33 -33
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@azure/app-configuration",
|
|
3
3
|
"author": "Microsoft Corporation",
|
|
4
4
|
"description": "An isomorphic client library for the Azure App Configuration service.",
|
|
5
|
-
"version": "1.9.1-alpha.
|
|
5
|
+
"version": "1.9.1-alpha.20250822.1",
|
|
6
6
|
"sdk-type": "client",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
@@ -25,24 +25,6 @@
|
|
|
25
25
|
"README.md",
|
|
26
26
|
"LICENSE"
|
|
27
27
|
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
30
|
-
"build:samples": "echo Obsolete.",
|
|
31
|
-
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
32
|
-
"clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log",
|
|
33
|
-
"execute:samples": "dev-tool samples run samples-dev",
|
|
34
|
-
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
35
|
-
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
36
|
-
"generate:client": "autorest --typescript swagger/swagger.md",
|
|
37
|
-
"lint": "eslint package.json src test",
|
|
38
|
-
"lint:fix": "eslint package.json src test --fix",
|
|
39
|
-
"pack": "npm pack 2>&1",
|
|
40
|
-
"test": "npm run test:node && npm run test:browser",
|
|
41
|
-
"test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",
|
|
42
|
-
"test:node": "dev-tool run test:vitest -- --test-timeout 180000",
|
|
43
|
-
"test:node:esm": "dev-tool run test:vitest --esm -- --test-timeout 180000",
|
|
44
|
-
"update-snippets": "dev-tool run update-snippets"
|
|
45
|
-
},
|
|
46
28
|
"engines": {
|
|
47
29
|
"node": ">=20.0.0"
|
|
48
30
|
},
|
|
@@ -78,22 +60,22 @@
|
|
|
78
60
|
"tslib": "^2.2.0"
|
|
79
61
|
},
|
|
80
62
|
"devDependencies": {
|
|
81
|
-
"@azure-tools/test-credential": "^2.0.0",
|
|
82
|
-
"@azure-tools/test-recorder": ">=4.1.0-alpha <4.1.0-alphb",
|
|
83
|
-
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
84
|
-
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
85
63
|
"@azure/eventgrid": "^5.0.0",
|
|
86
|
-
"@azure/identity": "
|
|
64
|
+
"@azure/identity": "4.11.1",
|
|
87
65
|
"@azure/keyvault-secrets": "^4.2.0",
|
|
88
|
-
"@types/node": "^20.
|
|
89
|
-
"@vitest/browser": "^3.
|
|
90
|
-
"@vitest/coverage-istanbul": "^3.
|
|
66
|
+
"@types/node": "^20.19.0",
|
|
67
|
+
"@vitest/browser": "^3.2.3",
|
|
68
|
+
"@vitest/coverage-istanbul": "^3.2.3",
|
|
91
69
|
"dotenv": "^16.0.0",
|
|
92
|
-
"eslint": "^9.
|
|
70
|
+
"eslint": "^9.33.0",
|
|
93
71
|
"nock": "^13.5.4",
|
|
94
|
-
"playwright": "^1.
|
|
95
|
-
"typescript": "~5.8.
|
|
96
|
-
"vitest": "^3.
|
|
72
|
+
"playwright": "^1.50.1",
|
|
73
|
+
"typescript": "~5.8.3",
|
|
74
|
+
"vitest": "^3.2.3",
|
|
75
|
+
"@azure-tools/test-credential": "^2.1.1",
|
|
76
|
+
"@azure/dev-tool": "^1.0.0",
|
|
77
|
+
"@azure-tools/test-recorder": "^4.1.0",
|
|
78
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
97
79
|
},
|
|
98
80
|
"//sampleConfiguration": {
|
|
99
81
|
"productName": "Azure App Configuration",
|
|
@@ -148,5 +130,23 @@
|
|
|
148
130
|
}
|
|
149
131
|
}
|
|
150
132
|
},
|
|
151
|
-
"module": "./dist/esm/index.js"
|
|
152
|
-
|
|
133
|
+
"module": "./dist/esm/index.js",
|
|
134
|
+
"scripts": {
|
|
135
|
+
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
136
|
+
"build:samples": "tsc -p tsconfig.samples.json",
|
|
137
|
+
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
138
|
+
"clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log",
|
|
139
|
+
"execute:samples": "dev-tool samples run samples-dev",
|
|
140
|
+
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
141
|
+
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
142
|
+
"generate:client": "autorest --typescript swagger/swagger.md",
|
|
143
|
+
"lint": "eslint package.json src test",
|
|
144
|
+
"lint:fix": "eslint package.json src test --fix",
|
|
145
|
+
"pack": "pnpm pack 2>&1",
|
|
146
|
+
"test": "npm run test:node && npm run test:browser",
|
|
147
|
+
"test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",
|
|
148
|
+
"test:node": "dev-tool run test:vitest -- --test-timeout 180000",
|
|
149
|
+
"test:node:esm": "dev-tool run test:vitest --esm -- --test-timeout 180000",
|
|
150
|
+
"update-snippets": "dev-tool run update-snippets"
|
|
151
|
+
}
|
|
152
|
+
}
|