@azure-rest/onlineexperimentation 1.0.0-alpha.20251009.1 → 1.0.0-alpha.20251013.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-rest/onlineexperimentation",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20251013.1",
|
|
4
4
|
"description": "Azure Online Experimentation Service",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.0.0"
|
|
@@ -65,14 +65,18 @@
|
|
|
65
65
|
"tslib": "^2.6.2"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"dotenv": "^16.0.0",
|
|
69
|
-
"@types/node": "^20.19.0",
|
|
70
|
-
"eslint": "^9.33.0",
|
|
71
|
-
"typescript": "~5.9.3",
|
|
72
68
|
"@azure/identity": "4.11.1",
|
|
69
|
+
"@types/node": "^20.19.0",
|
|
73
70
|
"@vitest/browser": "^3.2.3",
|
|
74
71
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
72
|
+
"cross-env": "^7.0.3",
|
|
73
|
+
"dotenv": "^16.0.0",
|
|
74
|
+
"eslint": "^9.33.0",
|
|
75
75
|
"playwright": "^1.50.1",
|
|
76
|
+
"prettier": "^3.6.2",
|
|
77
|
+
"rimraf": "^6.0.1",
|
|
78
|
+
"tshy": "^3.0.0",
|
|
79
|
+
"typescript": "~5.9.3",
|
|
76
80
|
"vitest": "^3.2.3",
|
|
77
81
|
"@azure-tools/test-credential": "^2.1.2",
|
|
78
82
|
"@azure/dev-tool": "^1.0.0",
|
|
@@ -112,28 +116,27 @@
|
|
|
112
116
|
"types": "./dist/commonjs/index.d.ts",
|
|
113
117
|
"module": "./dist/esm/index.js",
|
|
114
118
|
"scripts": {
|
|
115
|
-
"
|
|
116
|
-
"extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api",
|
|
117
|
-
"pack": "pnpm pack 2>&1",
|
|
118
|
-
"lint": "eslint package.json src test",
|
|
119
|
-
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
120
|
-
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
|
121
|
-
"unit-test:browser": "npm run build:test && dev-tool run test:vitest --browser",
|
|
122
|
-
"unit-test:node": "dev-tool run test:vitest",
|
|
123
|
-
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
124
|
-
"integration-test:browser": "echo skipped",
|
|
125
|
-
"integration-test:node": "echo skipped",
|
|
119
|
+
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
126
120
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
127
|
-
"
|
|
121
|
+
"build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test",
|
|
122
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ",
|
|
123
|
+
"clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log",
|
|
128
124
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
129
|
-
"
|
|
125
|
+
"extract-api": "rimraf review && dev-tool run extract-api",
|
|
126
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ",
|
|
130
127
|
"generate:client": "echo skipped",
|
|
128
|
+
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
129
|
+
"integration-test:browser": "echo skipped",
|
|
130
|
+
"integration-test:node": "echo skipped",
|
|
131
|
+
"lint": "eslint package.json src test",
|
|
132
|
+
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
133
|
+
"pack": "pnpm pack 2>&1",
|
|
134
|
+
"test": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run unit-test:browser && npm run integration-test",
|
|
131
135
|
"test:browser": "npm run clean && npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
|
|
132
|
-
"minify": "dev-tool run vendored uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js",
|
|
133
|
-
"build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test",
|
|
134
|
-
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
135
136
|
"test:node": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run integration-test:node",
|
|
136
|
-
"test": "npm run
|
|
137
|
+
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
|
138
|
+
"unit-test:browser": "npm run build:test && dev-tool run test:vitest --browser",
|
|
139
|
+
"unit-test:node": "dev-tool run test:vitest",
|
|
137
140
|
"update-snippets": "dev-tool run update-snippets"
|
|
138
141
|
}
|
|
139
142
|
}
|