@azure-rest/agrifood-farming 1.0.0-alpha.20251013.1 → 1.0.0-alpha.20251015.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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "client",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "An isomorphic REST client library for the Azure FarmBeats Service.",
|
|
6
|
-
"version": "1.0.0-alpha.
|
|
6
|
+
"version": "1.0.0-alpha.20251015.1",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
9
9
|
"azure",
|
|
@@ -65,18 +65,22 @@
|
|
|
65
65
|
"@types/node": "^20.19.0",
|
|
66
66
|
"@vitest/browser": "^3.2.3",
|
|
67
67
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
68
|
+
"cross-env": "^7.0.3",
|
|
68
69
|
"dotenv": "^16.0.0",
|
|
69
70
|
"eslint": "^9.33.0",
|
|
70
71
|
"playwright": "^1.50.1",
|
|
72
|
+
"prettier": "^3.6.2",
|
|
73
|
+
"rimraf": "^6.0.1",
|
|
74
|
+
"tshy": "^3.0.0",
|
|
71
75
|
"typescript": "~5.9.3",
|
|
72
76
|
"vitest": "^3.2.3",
|
|
73
77
|
"@azure-tools/test-credential": "^2.1.2",
|
|
74
78
|
"@azure-tools/test-recorder": "^4.1.1",
|
|
75
79
|
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
76
80
|
"@azure/core-rest-pipeline": "^1.22.1",
|
|
77
|
-
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
78
81
|
"@azure/core-util": "^1.13.1",
|
|
79
|
-
"@azure/dev-tool": "^1.0.0"
|
|
82
|
+
"@azure/dev-tool": "^1.0.0",
|
|
83
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
80
84
|
},
|
|
81
85
|
"type": "module",
|
|
82
86
|
"tshy": {
|
|
@@ -119,11 +123,11 @@
|
|
|
119
123
|
"scripts": {
|
|
120
124
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
121
125
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
122
|
-
"check-format": "
|
|
123
|
-
"clean": "
|
|
126
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
127
|
+
"clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log",
|
|
124
128
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
125
|
-
"extract-api": "
|
|
126
|
-
"format": "
|
|
129
|
+
"extract-api": "rimraf review && dev-tool run extract-api",
|
|
130
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
127
131
|
"generate:client": "autorest --typescript swagger/README.md && npm run format",
|
|
128
132
|
"lint": "eslint package.json src test",
|
|
129
133
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|