diff --git a/common/tools/dev-tool/package.json b/common/tools/dev-tool/package.json index f7411a0b394b..2e51f76d6fad 100644 --- a/common/tools/dev-tool/package.json +++ b/common/tools/dev-tool/package.json @@ -40,7 +40,7 @@ "@_ts/max": "npm:typescript@latest", "@_ts/min": "npm:typescript@~4.2.4", "@arethetypeswrong/cli": "^0.17.4", - "@azure/identity": "4.10.1", + "@azure/identity": "4.12.0", "@microsoft/api-extractor": "^7.52.4", "@microsoft/api-extractor-model": "^7.30.5", "@pnpm/catalogs.config": "^1000.0.2", @@ -55,15 +55,15 @@ "fs-extra": "^11.2.0", "memfs": "^4.14.1", "minimist": "^1.2.8", - "prettier": "^3.5.3", + "prettier": "catalog:", "semver": "^7.6.0", "strip-json-comments": "^5.0.1", "tar": "^7.4.3", "ts-morph": "^27.0.0", - "tshy": "^3.0.0", + "tshy": "catalog:", "tslib": "^2.8.1", - "tsx": "^4.19.3", - "typescript": "~5.8.2", + "tsx": "catalog:", + "typescript": "~5.9.3", "unzipper": "~0.12.3", "yaml": "^2.3.4" }, @@ -79,10 +79,10 @@ "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", "builtin-modules": "^3.1.0", - "cross-env": "^7.0.3", + "cross-env": "catalog:", "eslint": "catalog:", "mkdirp": "^3.0.1", - "rimraf": "^6.0.1", + "rimraf": "catalog:", "typescript-eslint": "~8.43.0", "vitest": "catalog:testing" } diff --git a/common/tools/dev-tool/src/templates/sampleReadme.md.ts b/common/tools/dev-tool/src/templates/sampleReadme.md.ts index 2c568ba810ff..9bb0207aa93d 100644 --- a/common/tools/dev-tool/src/templates/sampleReadme.md.ts +++ b/common/tools/dev-tool/src/templates/sampleReadme.md.ts @@ -267,7 +267,7 @@ ${fence( Alternatively, run a single sample with the correct environment variables set (setting up the \`.env\` file is not required if you do this), for example (cross-platform): -${fence("bash", `npx dev-tool run vendored cross-env ${exampleNodeInvocation(info)}`)} +${fence("bash", `cross-env ${exampleNodeInvocation(info)}`)} ## Next Steps diff --git a/common/tools/dev-tool/src/util/samples/generation.ts b/common/tools/dev-tool/src/util/samples/generation.ts index ec8a93324553..399df436a7d5 100644 --- a/common/tools/dev-tool/src/util/samples/generation.ts +++ b/common/tools/dev-tool/src/util/samples/generation.ts @@ -255,13 +255,14 @@ export async function makeSampleGenerationInfo( }, defaultDependencies), ...(outputKind === OutputKind.TypeScript ? { - // In TypeScript samples, we include TypeScript and `rimraf`, because they're used + // In TypeScript samples, we include TypeScript, `cross-env`, and `rimraf`, because they're used // in the package scripts as well as @types/node. devDependencies: { ...typesDependencies, "@types/node": `^${MIN_SUPPORTED_NODE_VERSION}`, - typescript: devToolPackageJson.dependencies.typescript, + "cross-env": "latest", rimraf: "latest", + typescript: devToolPackageJson.dependencies.typescript, }, } : {}), diff --git a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/javascript/README.md b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/javascript/README.md index 348d6aecb71d..a2eee5487994 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/javascript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/javascript/README.md @@ -39,7 +39,7 @@ node index.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env WAIT_TIME="" node index.js +cross-env WAIT_TIME="" node index.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/README.md b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/README.md index 4eda29cfad64..4cc0214ec1d9 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/README.md @@ -51,7 +51,7 @@ node dist/index.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env WAIT_TIME="" node dist/index.js +cross-env WAIT_TIME="" node dist/index.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/package.json b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/package.json index bcd8cb3932cf..8ced8d3c013b 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/package.json +++ b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/package.json @@ -32,7 +32,8 @@ }, "devDependencies": { "@types/node": "^20.0.0", - "typescript": "~5.8.2", - "rimraf": "latest" + "cross-env": "latest", + "rimraf": "latest", + "typescript": "~5.9.3" } } diff --git a/common/tools/dev-tool/test/samples/files/expectations/output-customization/javascript/README.md b/common/tools/dev-tool/test/samples/files/expectations/output-customization/javascript/README.md index dfa21e8c63df..6e5ed0436926 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/output-customization/javascript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/output-customization/javascript/README.md @@ -43,7 +43,7 @@ node getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node getConfigurationSetting.js +cross-env MY_VARIABLE="" node getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/README.md b/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/README.md index 15672b5a09a3..2fe689cc8242 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/README.md @@ -55,7 +55,7 @@ node dist/getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js +cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/package.json b/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/package.json index 373b89d713ea..28121851067e 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/package.json +++ b/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/package.json @@ -30,7 +30,8 @@ }, "devDependencies": { "@types/node": "^20.0.0", - "typescript": "~5.8.2", - "rimraf": "latest" + "cross-env": "latest", + "rimraf": "latest", + "typescript": "~5.9.3" } } diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple/javascript/README.md b/common/tools/dev-tool/test/samples/files/expectations/simple/javascript/README.md index 7bcf6ecd580e..0abe71eabbbc 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple/javascript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/simple/javascript/README.md @@ -39,7 +39,7 @@ node getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node getConfigurationSetting.js +cross-env MY_VARIABLE="" node getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/README.md b/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/README.md index 6099dc25572e..81634cc5669d 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/README.md @@ -51,7 +51,7 @@ node dist/getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js +cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/package.json b/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/package.json index 06a67af5d5cb..2641a6ec87a4 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/package.json +++ b/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/package.json @@ -30,7 +30,8 @@ }, "devDependencies": { "@types/node": "^20.0.0", - "typescript": "~5.8.2", - "rimraf": "latest" + "cross-env": "latest", + "rimraf": "latest", + "typescript": "~5.9.3" } } diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/javascript/README.md b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/javascript/README.md index 9a2221ca0015..51bfbbd2a15d 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/javascript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/javascript/README.md @@ -39,7 +39,7 @@ node getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node getConfigurationSetting.js +cross-env MY_VARIABLE="" node getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/README.md b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/README.md index d606704afe41..fd411427cf86 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/README.md @@ -51,7 +51,7 @@ node dist/getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js +cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/package.json b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/package.json index 31dc9fa57dbe..23c4a4f343b5 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/package.json +++ b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/package.json @@ -30,7 +30,8 @@ }, "devDependencies": { "@types/node": "^20.0.0", - "typescript": "~5.8.2", - "rimraf": "latest" + "cross-env": "latest", + "rimraf": "latest", + "typescript": "~5.9.3" } } diff --git a/common/tools/dev-tool/test/samples/files/expectations/special-characters/javascript/README.md b/common/tools/dev-tool/test/samples/files/expectations/special-characters/javascript/README.md index 691691a60062..802df62f3733 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/special-characters/javascript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/special-characters/javascript/README.md @@ -39,7 +39,7 @@ node getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node getConfigurationSetting.js +cross-env MY_VARIABLE="" node getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/README.md b/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/README.md index d0c502589fd7..babf274e2d7d 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/README.md @@ -51,7 +51,7 @@ node dist/getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js +cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/package.json b/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/package.json index 26cff205ea0d..e40cc8da67c0 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/package.json +++ b/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/package.json @@ -30,7 +30,8 @@ }, "devDependencies": { "@types/node": "^20.0.0", - "typescript": "~5.8.2", - "rimraf": "latest" + "cross-env": "latest", + "rimraf": "latest", + "typescript": "~5.9.3" } } diff --git a/common/tools/eslint-plugin-azure-sdk/package.json b/common/tools/eslint-plugin-azure-sdk/package.json index 4ed8fe975af0..409b8c251db9 100644 --- a/common/tools/eslint-plugin-azure-sdk/package.json +++ b/common/tools/eslint-plugin-azure-sdk/package.json @@ -110,11 +110,12 @@ "@typescript-eslint/utils": "~8.43.0", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", "prettier": "^3.3.3", "rimraf": "^6.0.1", - "tshy": "^3.0.0", + "tshy": "catalog:", "vitest": "catalog:testing" }, "tshy": { diff --git a/eng/containers/turborepo-remote-cache/package.json b/eng/containers/turborepo-remote-cache/package.json index 19a084508dc2..4b8949b20da9 100644 --- a/eng/containers/turborepo-remote-cache/package.json +++ b/eng/containers/turborepo-remote-cache/package.json @@ -39,6 +39,8 @@ "@vitest/coverage-istanbul": "^3.1.1", "eslint": "^9.9.0", "pino-pretty": "^13.1.1", + "prettier": "catalog:", + "rimraf": "catalog:", "tsx": "^4.17.0", "typescript": "~5.8.2", "typescript-eslint": "~8.43.0", @@ -54,7 +56,7 @@ "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.{ts,json,md}\"", "lint": "eslint src test", "lint:fix": "eslint src test --fix --fix-type [problem,suggestion]", - "pack": "npm pack 2>&1", + "pack": "pnpm pack 2>&1", "test": "npm run clean && npm run build && npm run test:node && npm run test:browser", "test:browser": "echo skipped", "test:node": "vitest", diff --git a/package.json b/package.json index 0c211aa78e3c..0ac10ba8b4dd 100644 --- a/package.json +++ b/package.json @@ -24,9 +24,6 @@ }, "devDependencies": { "cspell": "^9.2.0", - "cross-env": "^7.0.3", - "mkdirp": "^3.0.1", - "prettier": "^3.6.2", "prettier-plugin-packagejson": "^2.5.19", "rimraf": "^6.0.1", "turbo": "^2.5.6" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8a13387e21a1..828084150e92 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -22,9 +22,18 @@ catalogs: autorest: specifier: latest version: 3.7.2 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 eslint: specifier: ^9.33.0 version: 9.37.0 + prettier: + specifier: ^3.6.2 + version: 3.6.2 + rimraf: + specifier: ^6.0.1 + version: 6.0.1 tshy: specifier: ^3.0.0 version: 3.0.3 @@ -83,18 +92,9 @@ importers: .: devDependencies: - cross-env: - specifier: ^7.0.3 - version: 7.0.3 cspell: specifier: ^9.2.0 version: 9.2.1 - mkdirp: - specifier: ^3.0.1 - version: 3.0.1 - prettier: - specifier: ^3.6.2 - version: 3.6.2 prettier-plugin-packagejson: specifier: ^2.5.19 version: 2.5.19(prettier@3.6.2) @@ -117,8 +117,8 @@ importers: specifier: ^0.17.4 version: 0.17.4 '@azure/identity': - specifier: 4.10.1 - version: 4.10.1 + specifier: 4.12.0 + version: 4.12.0 '@microsoft/api-extractor': specifier: ^7.52.4 version: 7.53.1(@types/node@20.19.21) @@ -162,7 +162,7 @@ importers: specifier: ^1.2.8 version: 1.2.8 prettier: - specifier: ^3.5.3 + specifier: 'catalog:' version: 3.6.2 semver: specifier: ^7.6.0 @@ -177,17 +177,17 @@ importers: specifier: ^27.0.0 version: 27.0.0 tshy: - specifier: ^3.0.0 + specifier: 'catalog:' version: 3.0.3 tslib: specifier: ^2.8.1 version: 2.8.1 tsx: - specifier: ^4.19.3 + specifier: 'catalog:' version: 4.20.6 typescript: - specifier: ~5.8.2 - version: 5.8.3 + specifier: ~5.9.3 + version: 5.9.3 unzipper: specifier: ~0.12.3 version: 0.12.3 @@ -229,7 +229,7 @@ importers: specifier: ^3.1.0 version: 3.3.0 cross-env: - specifier: ^7.0.3 + specifier: 'catalog:' version: 7.0.3 eslint: specifier: 'catalog:' @@ -238,14 +238,14 @@ importers: specifier: ^3.0.1 version: 3.0.1 rimraf: - specifier: ^6.0.1 + specifier: 'catalog:' version: 6.0.1 typescript-eslint: specifier: ~8.43.0 - version: 8.43.0(eslint@9.37.0)(typescript@5.8.3) + version: 8.43.0(eslint@9.37.0)(typescript@5.9.3) vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) common/tools/eslint-plugin-azure-sdk: dependencies: @@ -319,6 +319,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 @@ -332,7 +335,7 @@ importers: specifier: ^6.0.1 version: 6.0.1 tshy: - specifier: ^3.0.0 + specifier: 'catalog:' version: 3.0.3 vitest: specifier: catalog:testing @@ -405,6 +408,12 @@ importers: pino-pretty: specifier: ^13.1.1 version: 13.1.2 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tsx: specifier: ^4.17.0 version: 4.20.6 @@ -460,12 +469,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -527,6 +548,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -536,6 +560,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -597,6 +630,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -606,6 +642,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -658,6 +703,15 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -746,18 +800,30 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 eslint: specifier: 'catalog:' version: 9.37.0 + mkdirp: + specifier: ^3.0.1 + version: 3.0.1 playwright: specifier: catalog:testing version: 1.56.0 prettier: specifier: ^3.2.5 version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -843,15 +909,30 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 eslint: specifier: 'catalog:' version: 9.37.0 + mkdirp: + specifier: ^3.0.1 + version: 3.0.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -949,15 +1030,30 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 eslint: specifier: 'catalog:' version: 9.37.0 + mkdirp: + specifier: ^3.0.1 + version: 3.0.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1010,6 +1106,15 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1071,6 +1176,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 csv-parse: specifier: ^6.0.0 version: 6.1.0 @@ -1083,6 +1191,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1135,9 +1252,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1193,6 +1319,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 @@ -1202,9 +1331,15 @@ importers: prettier: specifier: ^3.3.3 version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 rollup: specifier: ^4.14.0 version: 4.52.4 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1245,12 +1380,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1309,12 +1456,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1370,12 +1526,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1455,6 +1620,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -1467,6 +1635,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1501,9 +1678,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1559,12 +1748,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1623,12 +1821,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1678,12 +1888,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1742,12 +1961,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1803,12 +2031,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1870,6 +2107,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -1879,6 +2119,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1937,12 +2186,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1995,9 +2253,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2059,6 +2326,9 @@ importers: buffer: specifier: ^6.0.0 version: 6.0.3 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -2068,9 +2338,18 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 safe-buffer: specifier: ^5.2.1 version: 5.2.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2129,12 +2408,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2187,12 +2475,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2245,12 +2542,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2309,12 +2615,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2376,6 +2691,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -2385,6 +2703,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2443,9 +2770,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2498,9 +2834,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2559,12 +2904,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2626,6 +2980,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -2635,6 +2992,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2693,12 +3059,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2760,12 +3135,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2821,6 +3205,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -2830,6 +3217,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2888,12 +3284,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2952,9 +3357,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3013,12 +3427,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3074,6 +3497,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3083,6 +3509,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3141,67 +3576,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 - typescript: + rimraf: specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/changeanalysis/arm-changeanalysis: - dependencies: - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3209,7 +3598,7 @@ importers: specifier: catalog:testing version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - sdk/changes/arm-changes: + sdk/changeanalysis/arm-changeanalysis: dependencies: '@azure/core-auth': specifier: ^1.9.0 @@ -3242,6 +3631,9 @@ importers: '@azure/identity': specifier: catalog:internal version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger '@types/node': specifier: 'catalog:' version: 20.19.21 @@ -3251,9 +3643,79 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/changes/arm-changes: + dependencies: + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3318,6 +3780,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3327,6 +3792,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3388,6 +3862,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3397,6 +3874,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3464,6 +3950,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3473,6 +3962,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3549,6 +4047,9 @@ importers: chai-exclude: specifier: catalog:testing version: 3.0.1(chai@6.2.0) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3558,6 +4059,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3595,9 +4105,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3653,12 +4175,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3711,9 +4245,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3766,12 +4309,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3830,12 +4382,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3903,6 +4464,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3912,6 +4476,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3994,6 +4567,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4006,6 +4582,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4079,6 +4664,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4088,6 +4676,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4149,6 +4746,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 @@ -4161,6 +4761,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4225,6 +4834,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4234,6 +4846,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4310,6 +4931,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4319,6 +4943,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4380,6 +5013,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4389,6 +5025,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4462,6 +5107,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4471,6 +5119,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4544,6 +5201,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4553,6 +5213,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4623,6 +5292,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4632,6 +5304,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4699,6 +5380,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4708,6 +5392,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4778,6 +5471,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4787,6 +5483,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4854,6 +5559,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4863,6 +5571,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4933,6 +5650,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4942,6 +5662,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5009,6 +5738,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -5018,6 +5750,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5079,12 +5820,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5143,12 +5896,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5213,6 +5975,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -5222,6 +5987,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5277,6 +6051,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -5286,6 +6063,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -5347,6 +6133,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -5356,6 +6145,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -5417,6 +6215,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -5426,6 +6227,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5484,12 +6294,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5539,12 +6358,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5603,12 +6434,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5670,6 +6510,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -5679,6 +6522,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5737,70 +6589,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 - typescript: + rimraf: specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/consumption/arm-consumption: - dependencies: - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5808,20 +6611,14 @@ importers: specifier: catalog:testing version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - sdk/containerinstance/arm-containerinstance: + sdk/consumption/arm-consumption: dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller '@azure/core-auth': specifier: ^1.9.0 version: link:../../core/core-auth '@azure/core-client': specifier: ^1.9.2 version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.5.4 - version: 2.7.2 '@azure/core-paging': specifier: ^1.6.2 version: link:../../core/core-paging @@ -5859,12 +6656,94 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/containerinstance/arm-containerinstance: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.5.4 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5923,12 +6802,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5993,6 +6881,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -6002,6 +6893,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6033,9 +6933,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6091,12 +7003,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6158,6 +7082,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -6167,6 +7094,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6228,6 +7164,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -6237,6 +7176,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6298,6 +7246,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -6307,6 +7258,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -6368,6 +7328,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -6377,9 +7340,18 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 rollup-plugin-copy: specifier: ^3.5.0 version: 3.5.0 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6408,12 +7380,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6487,6 +7468,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 debug: specifier: ^4.3.4 version: 4.4.3 @@ -6496,6 +7480,12 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6536,12 +7526,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6594,12 +7593,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6646,12 +7654,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6689,12 +7706,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6741,12 +7767,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6778,12 +7813,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6836,12 +7880,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6888,12 +7941,21 @@ importers: concurrently: specifier: ^9.2.1 version: 9.2.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 express: specifier: ^5.1.0 version: 5.1.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6943,6 +8005,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -6955,6 +8020,12 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6992,12 +8063,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7038,12 +8118,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7081,12 +8170,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7121,6 +8219,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -7130,6 +8231,12 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7170,12 +8277,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7240,12 +8356,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7322,6 +8447,9 @@ importers: assertion-error: specifier: ^2.0.1 version: 2.0.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -7334,6 +8462,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7392,12 +8529,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7456,12 +8602,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7520,9 +8675,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7584,6 +8748,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -7593,6 +8760,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7654,6 +8830,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -7663,6 +8842,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7712,12 +8900,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7776,12 +8973,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7840,9 +9046,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7901,12 +9116,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7965,12 +9189,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8026,9 +9259,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8087,12 +9329,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8151,12 +9402,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8215,9 +9475,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8276,12 +9545,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8343,6 +9624,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -8352,6 +9636,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8410,12 +9703,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8477,6 +9779,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -8486,6 +9791,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8547,6 +9861,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -8556,6 +9873,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8611,9 +9937,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8666,12 +10001,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8730,12 +10074,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8794,6 +10147,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -8803,6 +10159,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8855,12 +10220,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8919,12 +10293,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8986,6 +10369,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -8995,6 +10381,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9053,12 +10448,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9123,6 +10527,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -9132,6 +10539,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9193,6 +10609,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -9202,6 +10621,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9260,9 +10688,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9321,149 +10758,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) - playwright: - specifier: catalog:testing - version: 1.56.0 - typescript: - specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/digitaltwins/arm-digitaltwins: - dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.5.0 - version: 2.7.2 - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + cross-env: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 - typescript: - specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/digitaltwins/digital-twins-core: - dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.0.0 - version: 2.7.2 - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - '@azure/core-tracing': - specifier: ^1.2.0 - version: link:../../core/core-tracing - '@azure/core-util': - specifier: ^1.11.0 - version: link:../../core/core-util - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/eslint-plugin-azure-sdk': - specifier: workspace:^ - version: link:../../../common/tools/eslint-plugin-azure-sdk - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@types/node': + rimraf: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 - eslint: + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 9.37.0 - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9471,7 +10777,7 @@ importers: specifier: catalog:testing version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - sdk/dns/arm-dns: + sdk/digitaltwins/arm-digitaltwins: dependencies: '@azure/abort-controller': specifier: ^2.1.2 @@ -9483,7 +10789,7 @@ importers: specifier: ^1.9.2 version: link:../../core/core-client '@azure/core-lro': - specifier: ^2.5.4 + specifier: ^2.5.0 version: 2.7.2 '@azure/core-paging': specifier: ^1.6.2 @@ -9522,12 +10828,182 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/digitaltwins/digital-twins-core: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.0.0 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + '@azure/core-tracing': + specifier: ^1.2.0 + version: link:../../core/core-tracing + '@azure/core-util': + specifier: ^1.11.0 + version: link:../../core/core-util + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/eslint-plugin-azure-sdk': + specifier: workspace:^ + version: link:../../../common/tools/eslint-plugin-azure-sdk + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + eslint: + specifier: 'catalog:' + version: 9.37.0 + playwright: + specifier: catalog:testing + version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/dns/arm-dns: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.5.4 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9586,12 +11062,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9650,12 +11135,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9717,6 +11211,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -9726,6 +11223,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9784,6 +11290,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -9793,6 +11302,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9851,9 +11369,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9915,6 +11442,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -9924,6 +11454,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9982,12 +11521,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10040,6 +11588,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -10049,6 +11600,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10104,6 +11664,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -10113,6 +11676,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10165,12 +11737,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10229,12 +11810,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10293,12 +11883,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10351,6 +11950,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -10360,6 +11962,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10418,12 +12029,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10485,6 +12105,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -10494,6 +12117,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10558,6 +12190,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -10567,6 +12202,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10598,9 +12242,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10644,12 +12300,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10711,12 +12379,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10775,12 +12452,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10887,6 +12573,9 @@ importers: copyfiles: specifier: ^2.4.1 version: 2.4.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 debug: specifier: ^4.4.0 version: 4.4.3 @@ -10905,6 +12594,18 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + tsx: + specifier: 'catalog:' + version: 4.20.6 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10945,9 +12646,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11024,6 +12737,9 @@ importers: chai-as-promised: specifier: catalog:testing version: 8.0.2(chai@6.2.0) + cross-env: + specifier: 'catalog:' + version: 7.0.3 debug: specifier: ^4.3.6 version: 4.4.3 @@ -11036,12 +12752,21 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 process: specifier: ^0.11.10 version: 0.11.10 + rimraf: + specifier: 'catalog:' + version: 6.0.1 stream: specifier: ^0.0.3 version: 0.0.3 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11112,6 +12837,9 @@ importers: chai-as-promised: specifier: catalog:testing version: 8.0.2(chai@6.2.0) + cross-env: + specifier: 'catalog:' + version: 7.0.3 debug: specifier: ^4.1.1 version: 4.4.3 @@ -11124,12 +12852,21 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 process: specifier: ^0.11.10 version: 0.11.10 + rimraf: + specifier: 'catalog:' + version: 6.0.1 stream: specifier: ^0.0.3 version: 0.0.3 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11161,6 +12898,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -11170,6 +12910,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11228,12 +12977,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11295,6 +13053,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -11307,6 +13068,12 @@ importers: prettier: specifier: ^3.2.5 version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11365,6 +13132,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -11377,6 +13147,12 @@ importers: prettier: specifier: ^3.2.5 version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11429,9 +13205,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11484,12 +13269,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11563,6 +13357,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -11578,9 +13375,15 @@ importers: prettier: specifier: ^3.3.3 version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 rollup: specifier: ^4.0.0 version: 4.52.4 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11615,9 +13418,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11673,134 +13488,161 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 - playwright: - specifier: catalog:testing - version: 1.56.0 - typescript: - specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/graphservices/arm-graphservices: - dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.5.3 - version: 2.7.2 - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/graphservices/arm-graphservices: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.5.3 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/guestconfiguration/arm-guestconfiguration: + dependencies: + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 - typescript: + rimraf: specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/guestconfiguration/arm-guestconfiguration: - dependencies: - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11859,9 +13701,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11923,6 +13774,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -11932,6 +13786,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11990,12 +13853,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12054,12 +13926,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12118,9 +13999,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12179,12 +14069,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12246,6 +14145,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12255,6 +14157,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12316,6 +14227,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12325,6 +14239,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12386,6 +14309,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12395,6 +14321,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12456,6 +14391,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12465,6 +14403,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12526,6 +14473,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12535,6 +14485,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12593,12 +14552,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12660,6 +14628,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12669,6 +14640,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12727,12 +14707,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12791,12 +14780,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12855,12 +14856,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12937,6 +14947,9 @@ importers: assertion-error: specifier: ^2.0.1 version: 2.0.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12952,6 +14965,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13010,9 +15032,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13068,6 +15102,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13077,6 +15114,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13111,9 +15157,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13160,6 +15218,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13169,6 +15230,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13227,12 +15297,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13294,6 +15373,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13303,6 +15385,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13361,12 +15452,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13422,6 +15522,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13431,6 +15534,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13483,12 +15595,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13547,9 +15671,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13611,6 +15744,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13620,6 +15756,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13678,12 +15823,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13742,12 +15896,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13809,6 +15972,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13818,6 +15984,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13876,12 +16051,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13940,12 +16124,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14019,6 +16212,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -14028,6 +16224,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14104,6 +16309,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -14113,6 +16321,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14147,9 +16364,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14199,12 +16428,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14278,6 +16519,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -14287,6 +16531,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14321,9 +16574,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14391,6 +16656,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -14400,6 +16668,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14434,9 +16711,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14492,12 +16781,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14556,12 +16854,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14614,12 +16921,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14678,12 +16994,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14742,12 +17067,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14809,6 +17143,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -14818,6 +17155,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14876,12 +17222,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14940,12 +17295,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15007,6 +17371,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -15016,6 +17383,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15074,12 +17450,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15141,6 +17526,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -15150,6 +17538,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15208,12 +17605,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15275,6 +17681,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -15284,6 +17693,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15339,9 +17757,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15400,12 +17827,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15443,9 +17879,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15513,6 +17961,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -15522,6 +17973,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15571,12 +18031,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15629,9 +18101,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15684,12 +18165,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15748,12 +18238,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15806,9 +18305,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15867,12 +18375,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15931,9 +18448,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15986,9 +18512,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16047,9 +18582,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16102,12 +18646,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16160,12 +18713,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16224,12 +18786,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16288,12 +18859,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16352,9 +18932,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16407,12 +18996,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16465,12 +19063,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16520,12 +19127,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16587,6 +19206,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -16596,6 +19218,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16657,6 +19288,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -16666,6 +19300,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16730,6 +19373,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -16739,6 +19385,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16803,6 +19458,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -16812,6 +19470,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16876,6 +19543,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -16885,6 +19555,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16943,9 +19622,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16998,12 +19686,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17068,6 +19765,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -17077,6 +19777,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17108,9 +19817,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17160,12 +19881,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17224,12 +19954,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17288,12 +20027,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17352,12 +20100,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17393,47 +20150,59 @@ importers: version: 2.8.1 devDependencies: '@azure-tools/test-credential': - specifier: ^2.0.0 + specifier: workspace:^ version: link:../../test-utils/test-credential '@azure-tools/test-recorder': - specifier: ^4.1.0 + specifier: workspace:^ version: link:../../test-utils/recorder '@azure-tools/test-utils-vitest': - specifier: ^1.0.0 - version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest '@azure/dev-tool': - specifier: ^1.0.0 + specifier: workspace:^ version: link:../../../common/tools/dev-tool '@azure/eslint-plugin-azure-sdk': - specifier: ^3.0.0 + specifier: workspace:^ version: link:../../../common/tools/eslint-plugin-azure-sdk '@azure/identity': - specifier: ^4.9.0 - version: link:../../identity/identity + specifier: catalog:internal + version: 4.11.1 '@types/node': - specifier: ^20.0.0 + specifier: 'catalog:' version: 20.19.21 '@vitest/browser': - specifier: ^3.0.9 - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': - specifier: ^3.0.9 + specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: - specifier: ^16.0.0 + specifier: catalog:testing version: 16.6.1 eslint: - specifier: ^9.9.0 + specifier: 'catalog:' version: 9.37.0 playwright: - specifier: ^1.52.0 + specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: - specifier: ~5.8.2 - version: 5.8.3 + specifier: 'catalog:' + version: 5.9.3 vitest: - specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/mongodbatlas/arm-mongodbatlas: dependencies: @@ -17489,6 +20258,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -17498,6 +20270,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17568,12 +20349,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17626,12 +20416,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17705,6 +20504,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -17714,6 +20516,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17748,9 +20559,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17869,12 +20692,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17954,6 +20789,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -17966,6 +20804,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18006,9 +20853,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18085,6 +20944,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -18094,6 +20956,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18164,6 +21035,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -18173,6 +21047,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18225,12 +21108,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18289,9 +21181,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18350,12 +21251,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18417,6 +21327,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -18426,6 +21339,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18484,12 +21406,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18548,12 +21482,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18612,12 +21555,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18679,6 +21631,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -18688,6 +21643,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18746,12 +21710,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18810,9 +21783,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18871,12 +21853,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18935,12 +21926,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19002,12 +22002,27 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 + eslint: + specifier: 'catalog:' + version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19069,6 +22084,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19078,6 +22096,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19136,9 +22163,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19200,6 +22236,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19209,6 +22248,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19258,6 +22306,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19267,6 +22318,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19325,6 +22385,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19337,6 +22400,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19398,12 +22470,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19462,9 +22543,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19526,6 +22616,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19535,6 +22628,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19593,131 +22695,158 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 - playwright: - specifier: catalog:testing - version: 1.56.0 - typescript: - specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/paloaltonetworksngfw/arm-paloaltonetworksngfw: - dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.5.4 - version: 2.7.2 - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.19.0 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/paloaltonetworksngfw/arm-paloaltonetworksngfw: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.5.4 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.19.0 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/peering/arm-peering: + dependencies: + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.19.0 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 - typescript: + rimraf: specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/peering/arm-peering: - dependencies: - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.19.0 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19779,6 +22908,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19788,6 +22920,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19849,6 +22990,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19858,6 +23002,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19919,6 +23072,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19928,6 +23084,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19989,6 +23154,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19998,6 +23166,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20035,9 +23212,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20087,12 +23276,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20148,12 +23349,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20206,12 +23419,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20270,12 +23492,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20328,12 +23559,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20389,6 +23629,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -20398,6 +23641,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20456,9 +23708,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20517,12 +23778,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20581,12 +23851,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20645,9 +23924,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20706,12 +23994,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20773,6 +24070,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -20782,6 +24082,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20843,6 +24152,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -20852,6 +24164,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20910,9 +24231,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20965,6 +24295,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -20974,6 +24307,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21029,6 +24371,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21038,6 +24383,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21096,6 +24450,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21105,6 +24462,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21166,6 +24532,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21175,6 +24544,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21230,6 +24608,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21239,6 +24620,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21297,12 +24687,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21370,6 +24769,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21379,6 +24781,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21437,12 +24848,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21501,12 +24924,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21568,12 +25000,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21635,6 +25076,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21644,6 +25088,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21702,12 +25155,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21766,12 +25228,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21833,12 +25304,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21897,12 +25377,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21961,12 +25450,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22025,12 +25523,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22089,12 +25596,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22147,9 +25663,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22202,12 +25727,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22266,12 +25800,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22324,12 +25867,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22388,12 +25940,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22452,12 +26013,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22513,6 +26083,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -22522,6 +26095,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22580,12 +26162,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22644,12 +26235,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22708,6 +26308,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -22717,6 +26320,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22787,6 +26399,9 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -22796,12 +26411,21 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 process: specifier: ^0.11.10 version: 0.11.10 + rimraf: + specifier: 'catalog:' + version: 6.0.1 stream: specifier: ^0.0.3 version: 0.0.3 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22839,9 +26463,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22906,6 +26542,9 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -22915,6 +26554,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22973,12 +26621,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23037,12 +26694,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23113,6 +26782,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -23122,6 +26794,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 type-plus: specifier: ^7.6.2 version: 7.6.2 @@ -23159,9 +26840,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23217,12 +26910,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23281,12 +26983,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23345,12 +27056,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23409,64 +27129,82 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/serialconsole/arm-serialconsole: + dependencies: + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-rest-pipeline': + specifier: ^1.19.0 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 - typescript: + rimraf: specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/serialconsole/arm-serialconsole: - dependencies: - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-rest-pipeline': - specifier: ^1.19.0 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23519,12 +27257,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23583,12 +27330,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23710,6 +27466,9 @@ importers: chai-exclude: specifier: catalog:testing version: 3.0.1(chai@6.2.0) + cross-env: + specifier: 'catalog:' + version: 7.0.3 debug: specifier: ^4.1.1 version: 4.4.3 @@ -23728,6 +27487,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23765,9 +27533,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23823,12 +27603,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23893,6 +27682,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -23902,6 +27694,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23963,6 +27764,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -23972,6 +27776,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24024,12 +27837,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24088,12 +27910,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24155,6 +27986,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -24164,6 +27998,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24222,12 +28065,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24289,6 +28141,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -24298,6 +28153,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24356,12 +28220,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24420,12 +28293,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24484,12 +28366,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24548,12 +28442,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24615,6 +28518,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -24624,6 +28530,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24682,12 +28597,24 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -24746,12 +28673,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24837,6 +28773,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -24846,6 +28785,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24919,6 +28867,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -24928,6 +28879,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24962,9 +28922,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25017,12 +28989,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25105,6 +29089,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -25114,6 +29101,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25145,9 +29141,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25227,6 +29235,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -25236,6 +29247,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25267,9 +29287,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25307,6 +29339,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -25316,6 +29351,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25389,6 +29433,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -25398,6 +29445,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25462,6 +29518,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -25471,6 +29530,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25529,12 +29597,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25596,6 +29676,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -25605,6 +29688,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -25657,12 +29749,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25724,6 +29825,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -25733,6 +29837,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -25791,9 +29904,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25852,9 +29974,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25913,73 +30044,91 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) - playwright: - specifier: catalog:testing - version: 1.56.0 - typescript: - specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/streamanalytics/arm-streamanalytics: - dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.5.4 - version: 2.7.2 - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.19.0 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + cross-env: + specifier: 'catalog:' + version: 7.0.3 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/streamanalytics/arm-streamanalytics: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.5.4 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.19.0 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26038,9 +30187,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26093,12 +30251,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26157,12 +30324,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26221,12 +30397,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26282,6 +30467,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26291,6 +30479,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26346,6 +30543,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26355,6 +30555,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26416,6 +30625,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26425,6 +30637,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26480,6 +30701,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26489,6 +30713,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26541,12 +30774,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26599,6 +30844,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26608,6 +30856,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26675,6 +30932,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26684,6 +30944,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26715,9 +30984,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26776,6 +31057,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26785,6 +31069,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26837,6 +31130,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26846,6 +31142,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26883,9 +31188,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26935,9 +31252,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26999,6 +31325,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27008,6 +31337,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27054,9 +31392,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27100,6 +31450,9 @@ importers: concurrently: specifier: ^9.2.1 version: 9.2.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 @@ -27109,6 +31462,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 tslib: specifier: 'catalog:' version: 2.8.1 @@ -27155,12 +31517,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27210,12 +31584,24 @@ importers: '@vitest/expect': specifier: catalog:testing version: 3.2.4 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27277,6 +31663,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27286,6 +31675,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27320,9 +31718,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27378,12 +31788,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27436,12 +31855,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27509,6 +31937,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27518,6 +31949,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27573,6 +32013,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27582,6 +32025,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27643,6 +32095,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27652,6 +32107,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27707,6 +32171,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27716,6 +32183,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27771,9 +32247,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27832,12 +32317,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27896,12 +32390,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27960,12 +32463,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28036,6 +32548,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -28045,6 +32560,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28106,6 +32630,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -28115,6 +32642,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28167,6 +32703,9 @@ importers: cpy-cli: specifier: ^6.0.0 version: 6.0.0 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -28179,9 +32718,18 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 protobufjs-cli: specifier: ^1.1.3 version: 1.1.3(protobufjs@7.5.4) + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28225,6 +32773,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -28237,6 +32788,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28298,6 +32858,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -28307,6 +32870,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -28365,12 +32937,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28432,6 +33013,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -28441,6 +33025,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28608,14 +33201,14 @@ packages: resolution: {integrity: sha512-LNtl3xZNE40vE7+SIST+GYQX5cnnI1M65fXPi26l9XCdPakuQrz54lHv+qQQt1GG5JbqLfQk75iM7A6Y9O+2dQ==} engines: {node: '>=18.0'} - '@azure/identity@4.10.1': - resolution: {integrity: sha512-YM/z6RxRtFlXUH2egAYF/FDPes+MUE6ZoknjEdaq7ebJMMNUzn9zCJ3bd2ZZZlkP0r1xKa88kolhFH/FGV7JnA==} - engines: {node: '>=18.0.0'} - '@azure/identity@4.11.1': resolution: {integrity: sha512-0ZdsLRaOyLxtCYgyuqyWqGU5XQ9gGnjxgfoNTt1pvELGkkUFrMATABZFIq8gusM7N1qbqpVtwLOhk0d/3kacLg==} engines: {node: '>=20.0.0'} + '@azure/identity@4.12.0': + resolution: {integrity: sha512-6vuh2R3Cte6SD6azNalLCjIDoryGdcvDVEV7IDRPtm5lHX5ffkDlIalaoOp5YJU08e4ipjJENel20kSMDLAcug==} + engines: {node: '>=20.0.0'} + '@azure/keyvault-common@2.0.0': resolution: {integrity: sha512-wRLVaroQtOqfg60cxkzUkGKrKMsCP6uYXAOomOIysSMyt1/YM0eUn9LqieAWM8DLcU4+07Fio2YGpPeqUbpP9w==} engines: {node: '>=18.0.0'} @@ -33653,7 +38246,7 @@ snapshots: '@azure/app-configuration-provider@2.2.0': dependencies: '@azure/app-configuration': 1.9.0 - '@azure/identity': 4.11.1 + '@azure/identity': 4.12.0 '@azure/keyvault-secrets': 4.10.0 jsonc-parser: 3.3.1 transitivePeerDependencies: @@ -33970,7 +38563,7 @@ snapshots: long: 4.0.0 undici: 5.29.0 - '@azure/identity@4.10.1': + '@azure/identity@4.11.1': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 @@ -33986,7 +38579,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/identity@4.11.1': + '@azure/identity@4.12.0': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 @@ -36201,7 +40794,7 @@ snapshots: magicast: 0.3.5 test-exclude: 7.0.1 tinyrainbow: 2.0.0 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) transitivePeerDependencies: - supports-color diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 384c486fca11..88b8f540191b 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -22,7 +22,6 @@ catalog: autorest: latest cross-env: ^7.0.3 eslint: ^9.33.0 - mkdirp: ^3.0.1 prettier: ^3.6.2 rimraf: ^6.0.1 tshy: ^3.0.0 diff --git a/sdk/advisor/arm-advisor/package.json b/sdk/advisor/arm-advisor/package.json index 71ab4f97ec6f..6aa19e43001b 100644 --- a/sdk/advisor/arm-advisor/package.json +++ b/sdk/advisor/arm-advisor/package.json @@ -35,8 +35,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -54,11 +58,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "echo skipped", "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/advisor/arm-advisor/samples/v3/javascript/README.md b/sdk/advisor/arm-advisor/samples/v3/javascript/README.md index 07e31a718dbe..adc2fa3140c2 100644 --- a/sdk/advisor/arm-advisor/samples/v3/javascript/README.md +++ b/sdk/advisor/arm-advisor/samples/v3/javascript/README.md @@ -50,7 +50,7 @@ node configurationsCreateInResourceGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ADVISOR_SUBSCRIPTION_ID="" node configurationsCreateInResourceGroupSample.js +cross-env ADVISOR_SUBSCRIPTION_ID="" node configurationsCreateInResourceGroupSample.js ``` ## Next Steps diff --git a/sdk/advisor/arm-advisor/samples/v3/typescript/README.md b/sdk/advisor/arm-advisor/samples/v3/typescript/README.md index f8ca07696e8f..1eb65331f827 100644 --- a/sdk/advisor/arm-advisor/samples/v3/typescript/README.md +++ b/sdk/advisor/arm-advisor/samples/v3/typescript/README.md @@ -62,7 +62,7 @@ node dist/configurationsCreateInResourceGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ADVISOR_SUBSCRIPTION_ID="" node dist/configurationsCreateInResourceGroupSample.js +cross-env ADVISOR_SUBSCRIPTION_ID="" node dist/configurationsCreateInResourceGroupSample.js ``` ## Next Steps diff --git a/sdk/agricultureplatform/arm-agricultureplatform/package.json b/sdk/agricultureplatform/arm-agricultureplatform/package.json index 745e680e0a6e..f2a70b88d9f6 100644 --- a/sdk/agricultureplatform/arm-agricultureplatform/package.json +++ b/sdk/agricultureplatform/arm-agricultureplatform/package.json @@ -80,20 +80,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/javascript/README.md b/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/javascript/README.md index 5a977f31bd6e..e0f4300e48f8 100644 --- a/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/javascript/README.md +++ b/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/javascript/README.md @@ -44,7 +44,7 @@ node agriServiceCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node agriServiceCreateOrUpdateSample.js +cross-env node agriServiceCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/typescript/README.md b/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/typescript/README.md index cdab9ad0aacb..48dd33abe167 100644 --- a/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/typescript/README.md +++ b/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/typescript/README.md @@ -56,7 +56,7 @@ node dist/agriServiceCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/agriServiceCreateOrUpdateSample.js +cross-env node dist/agriServiceCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/agrifood/agrifood-farming-rest/package.json b/sdk/agrifood/agrifood-farming-rest/package.json index dc4c5ef25ae3..74d9d82841f0 100644 --- a/sdk/agrifood/agrifood-farming-rest/package.json +++ b/sdk/agrifood/agrifood-farming-rest/package.json @@ -53,11 +53,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -89,9 +89,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/javascript/README.md b/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/javascript/README.md index e62347da8458..820469b6e9c0 100644 --- a/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/javascript/README.md +++ b/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/javascript/README.md @@ -51,7 +51,7 @@ node deleteParty.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FARMBEATS_ENDPOINT="" node deleteParty.js +cross-env FARMBEATS_ENDPOINT="" node deleteParty.js ``` ## Next Steps diff --git a/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/typescript/README.md b/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/typescript/README.md index b0440cefa7f6..bb9e205a13e9 100644 --- a/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/typescript/README.md +++ b/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/typescript/README.md @@ -63,7 +63,7 @@ node dist/deleteParty.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FARMBEATS_ENDPOINT="" node dist/deleteParty.js +cross-env FARMBEATS_ENDPOINT="" node dist/deleteParty.js ``` ## Next Steps diff --git a/sdk/agrifood/agrifood-farming-rest/samples/v1/javascript/README.md b/sdk/agrifood/agrifood-farming-rest/samples/v1/javascript/README.md index 334cf6a0ab6d..728bf9eea68f 100644 --- a/sdk/agrifood/agrifood-farming-rest/samples/v1/javascript/README.md +++ b/sdk/agrifood/agrifood-farming-rest/samples/v1/javascript/README.md @@ -51,7 +51,7 @@ node deleteParty.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FARMBEATS_ENDPOINT="" node deleteParty.js +cross-env FARMBEATS_ENDPOINT="" node deleteParty.js ``` ## Next Steps diff --git a/sdk/agrifood/agrifood-farming-rest/samples/v1/typescript/README.md b/sdk/agrifood/agrifood-farming-rest/samples/v1/typescript/README.md index f87b26b92fbf..67fd134ebaf0 100644 --- a/sdk/agrifood/agrifood-farming-rest/samples/v1/typescript/README.md +++ b/sdk/agrifood/agrifood-farming-rest/samples/v1/typescript/README.md @@ -63,7 +63,7 @@ node dist/deleteParty.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FARMBEATS_ENDPOINT="" node dist/deleteParty.js +cross-env FARMBEATS_ENDPOINT="" node dist/deleteParty.js ``` ## Next Steps diff --git a/sdk/agrifood/arm-agrifood/package.json b/sdk/agrifood/arm-agrifood/package.json index 0db13e945249..890d8a965a4e 100644 --- a/sdk/agrifood/arm-agrifood/package.json +++ b/sdk/agrifood/arm-agrifood/package.json @@ -36,6 +36,9 @@ "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,7 +58,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/agrifood/arm-agrifood/samples/v1-beta/javascript/README.md b/sdk/agrifood/arm-agrifood/samples/v1-beta/javascript/README.md index ffd2e67bf1f3..fba523bfcebf 100644 --- a/sdk/agrifood/arm-agrifood/samples/v1-beta/javascript/README.md +++ b/sdk/agrifood/arm-agrifood/samples/v1-beta/javascript/README.md @@ -58,7 +58,7 @@ node extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node extensionsCreateSample.js +cross-env node extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/agrifood/arm-agrifood/samples/v1-beta/typescript/README.md b/sdk/agrifood/arm-agrifood/samples/v1-beta/typescript/README.md index 76ad8e7ecbea..54c0fde12f5f 100644 --- a/sdk/agrifood/arm-agrifood/samples/v1-beta/typescript/README.md +++ b/sdk/agrifood/arm-agrifood/samples/v1-beta/typescript/README.md @@ -70,7 +70,7 @@ node dist/extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/extensionsCreateSample.js +cross-env node dist/extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/ai/ai-agents/package.json b/sdk/ai/ai-agents/package.json index 1d4fdf3ec67a..3a86dbfcde75 100644 --- a/sdk/ai/ai-agents/package.json +++ b/sdk/ai/ai-agents/package.json @@ -61,48 +61,52 @@ "@azure-rest/core-client": "^2.1.0", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.6.0", - "@azure/core-rest-pipeline": "^1.5.0", - "@azure/core-util": "^1.9.0", - "@azure/logger": "^1.1.4", "@azure/core-lro": "^3.0.0", - "tslib": "^2.6.2", "@azure/core-paging": "^1.5.0", + "@azure/core-rest-pipeline": "^1.5.0", "@azure/core-sse": "^2.1.3", - "@azure/core-tracing": "^1.2.0" + "@azure/core-tracing": "^1.2.0", + "@azure/core-util": "^1.9.0", + "@azure/logger": "^1.1.4", + "tslib": "^2.6.2" }, "devDependencies": { + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", - "@azure/opentelemetry-instrumentation-azure-sdk": "^1.0.0-beta.7", "@azure/monitor-opentelemetry": "^1.11.1", "@azure/monitor-opentelemetry-exporter": "^1.0.0-beta.31", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", + "@azure/opentelemetry-instrumentation-azure-sdk": "^1.0.0-beta.7", "@opentelemetry/api": "^1.9.0", "@opentelemetry/instrumentation": "0.57.0", "@opentelemetry/sdk-trace-node": "^1.30.0", + "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", - "@types/node": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", - "prettier": "^3.2.5", + "mkdirp": "^3.0.1", "playwright": "catalog:testing", + "prettier": "^3.2.5", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-* test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-* test-dist temp types *.tgz *.log", "copy:yaml": "copy tsp-location.yaml .\\src\\generated\\tsp-location.yaml", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "generate": "dev-tool run vendored rimraf ./src/generated && dev-tool run vendored mkdirp ./src/generated && npm run copy:yaml && npm run tsp:update && dev-tool run vendored rimraf ./src/generated/test && dev-tool run vendored rimraf ./src/generated/tsp-location.yaml", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "generate": "rimraf ./src/generated && mkdirp ./src/generated && npm run copy:yaml && npm run tsp:update && rimraf ./src/generated/test && rimraf ./src/generated/tsp-location.yaml", "generate-samples": "dev-tool samples publish -f", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/ai/ai-agents/samples/v1-beta/javascript/README.md b/sdk/ai/ai-agents/samples/v1-beta/javascript/README.md index 51994300d8ba..693811ede65b 100644 --- a/sdk/ai/ai-agents/samples/v1-beta/javascript/README.md +++ b/sdk/ai/ai-agents/samples/v1-beta/javascript/README.md @@ -78,7 +78,7 @@ node codeInterpreterWithStreaming.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env PROJECT_ENDPOINT="" MODEL_DEPLOYMENT_NAME="" node codeInterpreterWithStreaming.js +cross-env PROJECT_ENDPOINT="" MODEL_DEPLOYMENT_NAME="" node codeInterpreterWithStreaming.js ``` ## Next Steps diff --git a/sdk/ai/ai-agents/samples/v1-beta/typescript/README.md b/sdk/ai/ai-agents/samples/v1-beta/typescript/README.md index 3e2ff2e31af4..ac763892fac9 100644 --- a/sdk/ai/ai-agents/samples/v1-beta/typescript/README.md +++ b/sdk/ai/ai-agents/samples/v1-beta/typescript/README.md @@ -90,7 +90,7 @@ node dist/codeInterpreterWithStreaming.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env PROJECT_ENDPOINT="" MODEL_DEPLOYMENT_NAME="" node dist/codeInterpreterWithStreaming.js +cross-env PROJECT_ENDPOINT="" MODEL_DEPLOYMENT_NAME="" node dist/codeInterpreterWithStreaming.js ``` ## Next Steps diff --git a/sdk/ai/ai-inference-rest/package.json b/sdk/ai/ai-inference-rest/package.json index 8a20e3e8a7e3..fff86fcdbda1 100644 --- a/sdk/ai/ai-inference-rest/package.json +++ b/sdk/ai/ai-inference-rest/package.json @@ -107,9 +107,14 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", + "mkdirp": "^3.0.1", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -117,12 +122,12 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-* test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-* test-dist temp types *.tgz *.log", "customize": "dev-tool customization apply -s ./generated -c ./src && npm run format", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "generate": "dev-tool run vendored rimraf ./src/generated && dev-tool run vendored mkdirp ./src/generated && cp tsp-location.yaml ./src/generated && tsp-client update -o ./src/generated && dev-tool run vendored rimraf ./src/generated/tsp-location.yaml", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "generate": "rimraf ./src/generated && mkdirp ./src/generated && cp tsp-location.yaml ./src/generated && tsp-client update -o ./src/generated && rimraf ./src/generated/tsp-location.yaml", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", diff --git a/sdk/ai/ai-inference-rest/samples/v1-beta/javascript/README.md b/sdk/ai/ai-inference-rest/samples/v1-beta/javascript/README.md index 5379033a7be7..ed23f19b9bae 100644 --- a/sdk/ai/ai-inference-rest/samples/v1-beta/javascript/README.md +++ b/sdk/ai/ai-inference-rest/samples/v1-beta/javascript/README.md @@ -58,7 +58,7 @@ node audioDataChatCompletion.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" KEY="" MODEL_NAME="" node audioDataChatCompletion.js +cross-env ENDPOINT="" KEY="" MODEL_NAME="" node audioDataChatCompletion.js ``` ## Next Steps diff --git a/sdk/ai/ai-inference-rest/samples/v1-beta/typescript/README.md b/sdk/ai/ai-inference-rest/samples/v1-beta/typescript/README.md index 2b8ba671c863..e7b08bf45529 100644 --- a/sdk/ai/ai-inference-rest/samples/v1-beta/typescript/README.md +++ b/sdk/ai/ai-inference-rest/samples/v1-beta/typescript/README.md @@ -70,7 +70,7 @@ node dist/audioDataChatCompletion.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" KEY="" MODEL_NAME="" node dist/audioDataChatCompletion.js +cross-env ENDPOINT="" KEY="" MODEL_NAME="" node dist/audioDataChatCompletion.js ``` ## Next Steps diff --git a/sdk/ai/ai-projects/package.json b/sdk/ai/ai-projects/package.json index 0bd649b55d1e..caf9ace524f4 100644 --- a/sdk/ai/ai-projects/package.json +++ b/sdk/ai/ai-projects/package.json @@ -58,8 +58,9 @@ ] }, "dependencies": { - "@azure/ai-agents": "1.1.0", + "@azure-rest/core-client": "^2.1.0", "@azure/abort-controller": "^2.1.2", + "@azure/ai-agents": "1.1.0", "@azure/core-auth": "^1.6.0", "@azure/core-lro": "^3.0.0", "@azure/core-paging": "^1.5.0", @@ -69,42 +70,46 @@ "@azure/core-util": "^1.9.0", "@azure/logger": "^1.1.4", "@azure/storage-blob": "^12.26.0", - "@azure-rest/core-client": "^2.1.0", "openai": "^5.9.0", "tslib": "^2.6.2" }, "devDependencies": { + "@azure-rest/ai-inference": "^1.0.0-beta.6", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@azure/monitor-opentelemetry": "^1.14.0", "@azure/opentelemetry-instrumentation-azure-sdk": "1.0.0-beta.7", - "@azure-rest/ai-inference": "^1.0.0-beta.6", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@opentelemetry/api": "^1.9.0", "@opentelemetry/instrumentation": "^0.57.0", "@opentelemetry/sdk-trace-node": "^2.0.0", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", + "mkdirp": "^3.0.1", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-* test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-* test-dist temp types *.tgz *.log", "copy:yaml": "copy tsp-location.yaml .\\src\\generated\\tsp-location.yaml", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "generate": "dev-tool run vendored rimraf ./src/generated && dev-tool run vendored mkdirp ./src/generated && npm run copy:yaml && npm run tsp:update && dev-tool run vendored rimraf ./src/generated/test && dev-tool run vendored rimraf ./src/generated/tsp-location.yaml", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "generate": "rimraf ./src/generated && mkdirp ./src/generated && npm run copy:yaml && npm run tsp:update && rimraf ./src/generated/test && rimraf ./src/generated/tsp-location.yaml", "generate-samples": "dev-tool samples publish -f", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/ai/ai-projects/samples/v1-beta/javascript/README.md b/sdk/ai/ai-projects/samples/v1-beta/javascript/README.md index 018ded01827e..96ac396ed4d7 100644 --- a/sdk/ai/ai-projects/samples/v1-beta/javascript/README.md +++ b/sdk/ai/ai-projects/samples/v1-beta/javascript/README.md @@ -58,7 +58,7 @@ node agents\agentsBasics.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node agents\agentsBasics.js +cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node agents\agentsBasics.js ``` ## Next Steps diff --git a/sdk/ai/ai-projects/samples/v1-beta/typescript/README.md b/sdk/ai/ai-projects/samples/v1-beta/typescript/README.md index 996bba3ebe0c..fde24082588c 100644 --- a/sdk/ai/ai-projects/samples/v1-beta/typescript/README.md +++ b/sdk/ai/ai-projects/samples/v1-beta/typescript/README.md @@ -70,7 +70,7 @@ node dist/agents\agentsBasics.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node dist/agents\agentsBasics.js +cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node dist/agents\agentsBasics.js ``` ## Next Steps diff --git a/sdk/ai/ai-projects/samples/v1/javascript/README.md b/sdk/ai/ai-projects/samples/v1/javascript/README.md index 42d1dca11973..dfbf18004e0a 100644 --- a/sdk/ai/ai-projects/samples/v1/javascript/README.md +++ b/sdk/ai/ai-projects/samples/v1/javascript/README.md @@ -53,7 +53,7 @@ node agents\agentsBasics.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node agents\agentsBasics.js +cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node agents\agentsBasics.js ``` ## Next Steps diff --git a/sdk/ai/ai-projects/samples/v1/typescript/README.md b/sdk/ai/ai-projects/samples/v1/typescript/README.md index 841dba9edde5..0f30b06c9c08 100644 --- a/sdk/ai/ai-projects/samples/v1/typescript/README.md +++ b/sdk/ai/ai-projects/samples/v1/typescript/README.md @@ -65,7 +65,7 @@ node dist/agents\agentsBasics.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node dist/agents\agentsBasics.js +cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node dist/agents\agentsBasics.js ``` ## Next Steps diff --git a/sdk/analysisservices/arm-analysisservices/package.json b/sdk/analysisservices/arm-analysisservices/package.json index 704eb32a1f10..0d506606095c 100644 --- a/sdk/analysisservices/arm-analysisservices/package.json +++ b/sdk/analysisservices/arm-analysisservices/package.json @@ -36,6 +36,9 @@ "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,7 +58,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/analysisservices/arm-analysisservices/samples/v4/javascript/README.md b/sdk/analysisservices/arm-analysisservices/samples/v4/javascript/README.md index 0c334a6e3cdb..2912db4324ed 100644 --- a/sdk/analysisservices/arm-analysisservices/samples/v4/javascript/README.md +++ b/sdk/analysisservices/arm-analysisservices/samples/v4/javascript/README.md @@ -51,7 +51,7 @@ node serversCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node serversCheckNameAvailabilitySample.js +cross-env node serversCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/analysisservices/arm-analysisservices/samples/v4/typescript/README.md b/sdk/analysisservices/arm-analysisservices/samples/v4/typescript/README.md index 341c1478882e..3112bc534132 100644 --- a/sdk/analysisservices/arm-analysisservices/samples/v4/typescript/README.md +++ b/sdk/analysisservices/arm-analysisservices/samples/v4/typescript/README.md @@ -63,7 +63,7 @@ node dist/serversCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/serversCheckNameAvailabilitySample.js +cross-env node dist/serversCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/anomalydetector/ai-anomaly-detector-rest/package.json b/sdk/anomalydetector/ai-anomaly-detector-rest/package.json index 0180e8cdc540..70fa79858699 100644 --- a/sdk/anomalydetector/ai-anomaly-detector-rest/package.json +++ b/sdk/anomalydetector/ai-anomaly-detector-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,10 +69,14 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "csv-parse": "^6.0.0", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/javascript/README.md b/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/javascript/README.md index 3edbd0178c7b..62dcebfb4ef4 100644 --- a/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/javascript/README.md +++ b/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/javascript/README.md @@ -40,7 +40,7 @@ node sample_detect_change_point.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ANOMALY_DETECTOR_API_KEY="" ANOMALY_DETECTOR_ENDPOINT="" node sample_detect_change_point.js +cross-env ANOMALY_DETECTOR_API_KEY="" ANOMALY_DETECTOR_ENDPOINT="" node sample_detect_change_point.js ``` ## Next Steps diff --git a/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/typescript/README.md b/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/typescript/README.md index 3efc4a9929c4..7166c0fe5375 100644 --- a/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/typescript/README.md +++ b/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/typescript/README.md @@ -52,7 +52,7 @@ node dist/sample_detect_change_point.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ANOMALY_DETECTOR_API_KEY="" ANOMALY_DETECTOR_ENDPOINT="" node dist/sample_detect_change_point.js +cross-env ANOMALY_DETECTOR_API_KEY="" ANOMALY_DETECTOR_ENDPOINT="" node dist/sample_detect_change_point.js ``` ## Next Steps diff --git a/sdk/apicenter/arm-apicenter/package.json b/sdk/apicenter/arm-apicenter/package.json index b60301369c9b..898dd0451e1f 100644 --- a/sdk/apicenter/arm-apicenter/package.json +++ b/sdk/apicenter/arm-apicenter/package.json @@ -36,7 +36,10 @@ "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,7 +58,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/apicenter/arm-apicenter/samples/v1/javascript/README.md b/sdk/apicenter/arm-apicenter/samples/v1/javascript/README.md index 9fab4efb1f19..ec72e07cff02 100644 --- a/sdk/apicenter/arm-apicenter/samples/v1/javascript/README.md +++ b/sdk/apicenter/arm-apicenter/samples/v1/javascript/README.md @@ -81,7 +81,7 @@ node apiDefinitionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APICENTER_SUBSCRIPTION_ID="" APICENTER_RESOURCE_GROUP="" node apiDefinitionsCreateOrUpdateSample.js +cross-env APICENTER_SUBSCRIPTION_ID="" APICENTER_RESOURCE_GROUP="" node apiDefinitionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/apicenter/arm-apicenter/samples/v1/typescript/README.md b/sdk/apicenter/arm-apicenter/samples/v1/typescript/README.md index 15b461ff0352..e139291f9ffa 100644 --- a/sdk/apicenter/arm-apicenter/samples/v1/typescript/README.md +++ b/sdk/apicenter/arm-apicenter/samples/v1/typescript/README.md @@ -93,7 +93,7 @@ node dist/apiDefinitionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APICENTER_SUBSCRIPTION_ID="" APICENTER_RESOURCE_GROUP="" node dist/apiDefinitionsCreateOrUpdateSample.js +cross-env APICENTER_SUBSCRIPTION_ID="" APICENTER_RESOURCE_GROUP="" node dist/apiDefinitionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/apimanagement/api-management-custom-widgets-scaffolder/package.json b/sdk/apimanagement/api-management-custom-widgets-scaffolder/package.json index c67ff3cc3d56..7ac0a97b9c86 100644 --- a/sdk/apimanagement/api-management-custom-widgets-scaffolder/package.json +++ b/sdk/apimanagement/api-management-custom-widgets-scaffolder/package.json @@ -33,10 +33,10 @@ "build": "npm run clean && dev-tool run build-package && npm run bundle:bin && dev-tool run extract-api", "build:samples": "echo Skipped.", "bundle:bin": "rollup -c rollup.config.bin.mjs 2>&1", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "extract-api": "tsc -p . && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test --ignore-pattern templates", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion] --ignore-pattern templates", "pack": "pnpm pack 2>&1", @@ -54,10 +54,13 @@ "@types/yargs": "^17.0.32", "@types/yargs-parser": "^21.0.3", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "magic-string": "^0.30.8", "prettier": "^3.3.3", + "rimraf": "catalog:", "rollup": "^4.14.0", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/apimanagement/api-management-custom-widgets-tools/package.json b/sdk/apimanagement/api-management-custom-widgets-tools/package.json index be980819011e..14c31efa738d 100644 --- a/sdk/apimanagement/api-management-custom-widgets-tools/package.json +++ b/sdk/apimanagement/api-management-custom-widgets-tools/package.json @@ -29,10 +29,10 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "extract-api": "tsc -p . && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -47,8 +47,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/apimanagement/arm-apimanagement/package.json b/sdk/apimanagement/arm-apimanagement/package.json index 8f2699233b6a..9a126346d1fc 100644 --- a/sdk/apimanagement/arm-apimanagement/package.json +++ b/sdk/apimanagement/arm-apimanagement/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/apimanagement/arm-apimanagement/samples/v10/javascript/README.md b/sdk/apimanagement/arm-apimanagement/samples/v10/javascript/README.md index bf88a01ccea1..c749f5ba2a4f 100644 --- a/sdk/apimanagement/arm-apimanagement/samples/v10/javascript/README.md +++ b/sdk/apimanagement/arm-apimanagement/samples/v10/javascript/README.md @@ -649,7 +649,7 @@ node allPoliciesListByServiceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APIMANAGEMENT_SUBSCRIPTION_ID="" APIMANAGEMENT_RESOURCE_GROUP="" node allPoliciesListByServiceSample.js +cross-env APIMANAGEMENT_SUBSCRIPTION_ID="" APIMANAGEMENT_RESOURCE_GROUP="" node allPoliciesListByServiceSample.js ``` ## Next Steps diff --git a/sdk/apimanagement/arm-apimanagement/samples/v10/typescript/README.md b/sdk/apimanagement/arm-apimanagement/samples/v10/typescript/README.md index 29abff66ab79..0dfba4aba66c 100644 --- a/sdk/apimanagement/arm-apimanagement/samples/v10/typescript/README.md +++ b/sdk/apimanagement/arm-apimanagement/samples/v10/typescript/README.md @@ -661,7 +661,7 @@ node dist/allPoliciesListByServiceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APIMANAGEMENT_SUBSCRIPTION_ID="" APIMANAGEMENT_RESOURCE_GROUP="" node dist/allPoliciesListByServiceSample.js +cross-env APIMANAGEMENT_SUBSCRIPTION_ID="" APIMANAGEMENT_RESOURCE_GROUP="" node dist/allPoliciesListByServiceSample.js ``` ## Next Steps diff --git a/sdk/appcomplianceautomation/arm-appcomplianceautomation/package.json b/sdk/appcomplianceautomation/arm-appcomplianceautomation/package.json index d9a185d61def..d03b5a14ba67 100644 --- a/sdk/appcomplianceautomation/arm-appcomplianceautomation/package.json +++ b/sdk/appcomplianceautomation/arm-appcomplianceautomation/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/javascript/README.md b/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/javascript/README.md index 82080e6da93d..b64f1f07b8e5 100644 --- a/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/javascript/README.md +++ b/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/javascript/README.md @@ -70,7 +70,7 @@ node evidenceCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node evidenceCreateOrUpdateSample.js +cross-env node evidenceCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/typescript/README.md b/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/typescript/README.md index 964e7105ffc9..5e1e58d2bc9b 100644 --- a/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/typescript/README.md +++ b/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/typescript/README.md @@ -82,7 +82,7 @@ node dist/evidenceCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/evidenceCreateOrUpdateSample.js +cross-env node dist/evidenceCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/appconfiguration/app-configuration-perf-tests/package.json b/sdk/appconfiguration/app-configuration-perf-tests/package.json index d8ee5447963b..34677ef9bbc1 100644 --- a/sdk/appconfiguration/app-configuration-perf-tests/package.json +++ b/sdk/appconfiguration/app-configuration-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm test-dist types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm test-dist types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/appconfiguration/app-configuration/package.json b/sdk/appconfiguration/app-configuration/package.json index 65ff51d38a2c..2f0da0567e14 100644 --- a/sdk/appconfiguration/app-configuration/package.json +++ b/sdk/appconfiguration/app-configuration/package.json @@ -28,11 +28,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/swagger.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix", @@ -79,20 +79,24 @@ "devDependencies": { "@azure-tools/test-credential": "workspace:^", "@azure-tools/test-recorder": "workspace:^", + "@azure/app-configuration-provider": "^2.2.0", "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/eventgrid": "^5.0.0", "@azure/identity": "catalog:internal", "@azure/keyvault-secrets": "^4.2.0", - "@azure/app-configuration-provider": "^2.2.0", "@microsoft/feature-management": "^2.2.0", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "nock": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/appconfiguration/app-configuration/samples/v1-beta/javascript/README.md b/sdk/appconfiguration/app-configuration/samples/v1-beta/javascript/README.md index 2690c1fc3c6e..02dc84642608 100644 --- a/sdk/appconfiguration/app-configuration/samples/v1-beta/javascript/README.md +++ b/sdk/appconfiguration/app-configuration/samples/v1-beta/javascript/README.md @@ -59,7 +59,7 @@ node helloworld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONFIG_CONNECTION_STRING="" node helloworld.js +cross-env APPCONFIG_CONNECTION_STRING="" node helloworld.js ``` ## Next Steps diff --git a/sdk/appconfiguration/app-configuration/samples/v1-beta/typescript/README.md b/sdk/appconfiguration/app-configuration/samples/v1-beta/typescript/README.md index 5675b3c308d6..f92644647c38 100644 --- a/sdk/appconfiguration/app-configuration/samples/v1-beta/typescript/README.md +++ b/sdk/appconfiguration/app-configuration/samples/v1-beta/typescript/README.md @@ -71,7 +71,7 @@ node dist/helloworld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONFIG_CONNECTION_STRING="" node dist/helloworld.js +cross-env APPCONFIG_CONNECTION_STRING="" node dist/helloworld.js ``` ## Next Steps diff --git a/sdk/appconfiguration/app-configuration/samples/v1/javascript/README.md b/sdk/appconfiguration/app-configuration/samples/v1/javascript/README.md index f54a01343cad..2653d31a253f 100644 --- a/sdk/appconfiguration/app-configuration/samples/v1/javascript/README.md +++ b/sdk/appconfiguration/app-configuration/samples/v1/javascript/README.md @@ -60,7 +60,7 @@ node helloworld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZ_CONFIG_ENDPOINT="" node helloworld.js +cross-env AZ_CONFIG_ENDPOINT="" node helloworld.js ``` ## Next Steps diff --git a/sdk/appconfiguration/app-configuration/samples/v1/typescript/README.md b/sdk/appconfiguration/app-configuration/samples/v1/typescript/README.md index 4175deea9b90..069d696380c6 100644 --- a/sdk/appconfiguration/app-configuration/samples/v1/typescript/README.md +++ b/sdk/appconfiguration/app-configuration/samples/v1/typescript/README.md @@ -72,7 +72,7 @@ node dist/helloworld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZ_CONFIG_ENDPOINT="" node dist/helloworld.js +cross-env AZ_CONFIG_ENDPOINT="" node dist/helloworld.js ``` ## Next Steps diff --git a/sdk/appconfiguration/arm-appconfiguration/package.json b/sdk/appconfiguration/arm-appconfiguration/package.json index d5547c172e6a..1cb1a2706bb6 100644 --- a/sdk/appconfiguration/arm-appconfiguration/package.json +++ b/sdk/appconfiguration/arm-appconfiguration/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/appconfiguration/arm-appconfiguration/samples/v5/javascript/README.md b/sdk/appconfiguration/arm-appconfiguration/samples/v5/javascript/README.md index 5f57f3e39d29..c04da7c852d1 100644 --- a/sdk/appconfiguration/arm-appconfiguration/samples/v5/javascript/README.md +++ b/sdk/appconfiguration/arm-appconfiguration/samples/v5/javascript/README.md @@ -65,7 +65,7 @@ node configurationStoresCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONFIGURATION_SUBSCRIPTION_ID="" APPCONFIGURATION_RESOURCE_GROUP="" node configurationStoresCreateSample.js +cross-env APPCONFIGURATION_SUBSCRIPTION_ID="" APPCONFIGURATION_RESOURCE_GROUP="" node configurationStoresCreateSample.js ``` ## Next Steps diff --git a/sdk/appconfiguration/arm-appconfiguration/samples/v5/typescript/README.md b/sdk/appconfiguration/arm-appconfiguration/samples/v5/typescript/README.md index 6c4095e274b6..f577d62751ab 100644 --- a/sdk/appconfiguration/arm-appconfiguration/samples/v5/typescript/README.md +++ b/sdk/appconfiguration/arm-appconfiguration/samples/v5/typescript/README.md @@ -77,7 +77,7 @@ node dist/configurationStoresCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONFIGURATION_SUBSCRIPTION_ID="" APPCONFIGURATION_RESOURCE_GROUP="" node dist/configurationStoresCreateSample.js +cross-env APPCONFIGURATION_SUBSCRIPTION_ID="" APPCONFIGURATION_RESOURCE_GROUP="" node dist/configurationStoresCreateSample.js ``` ## Next Steps diff --git a/sdk/appcontainers/arm-appcontainers/package.json b/sdk/appcontainers/arm-appcontainers/package.json index 721a37cb21de..2ba9a00cfc7b 100644 --- a/sdk/appcontainers/arm-appcontainers/package.json +++ b/sdk/appcontainers/arm-appcontainers/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -39,8 +39,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,21 +59,21 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "prepack": "npm run build", - "pack": "npm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "integration-test": "npm run integration-test:node && npm run integration-test:browser", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", + "prepack": "npm run build", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", + "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", "unit-test": "npm run unit-test:node && npm run unit-test:browser", - "integration-test": "npm run integration-test:node && npm run integration-test:browser" + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/appcontainers/arm-appcontainers/samples/v3-beta/javascript/README.md b/sdk/appcontainers/arm-appcontainers/samples/v3-beta/javascript/README.md index 1d259ca62a0b..1ff9fe7603da 100644 --- a/sdk/appcontainers/arm-appcontainers/samples/v3-beta/javascript/README.md +++ b/sdk/appcontainers/arm-appcontainers/samples/v3-beta/javascript/README.md @@ -216,7 +216,7 @@ node appResiliencyCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONTAINERS_SUBSCRIPTION_ID="" APPCONTAINERS_RESOURCE_GROUP="" node appResiliencyCreateOrUpdateSample.js +cross-env APPCONTAINERS_SUBSCRIPTION_ID="" APPCONTAINERS_RESOURCE_GROUP="" node appResiliencyCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/appcontainers/arm-appcontainers/samples/v3-beta/typescript/README.md b/sdk/appcontainers/arm-appcontainers/samples/v3-beta/typescript/README.md index 21bf291214a2..3f44b4c036a6 100644 --- a/sdk/appcontainers/arm-appcontainers/samples/v3-beta/typescript/README.md +++ b/sdk/appcontainers/arm-appcontainers/samples/v3-beta/typescript/README.md @@ -228,7 +228,7 @@ node dist/appResiliencyCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONTAINERS_SUBSCRIPTION_ID="" APPCONTAINERS_RESOURCE_GROUP="" node dist/appResiliencyCreateOrUpdateSample.js +cross-env APPCONTAINERS_SUBSCRIPTION_ID="" APPCONTAINERS_RESOURCE_GROUP="" node dist/appResiliencyCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/applicationinsights/arm-appinsights/package.json b/sdk/applicationinsights/arm-appinsights/package.json index 9a14a6445959..476fba28edba 100644 --- a/sdk/applicationinsights/arm-appinsights/package.json +++ b/sdk/applicationinsights/arm-appinsights/package.json @@ -34,8 +34,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/applicationinsights/arm-appinsights/samples/v5-beta/javascript/README.md b/sdk/applicationinsights/arm-appinsights/samples/v5-beta/javascript/README.md index c390f1a115e6..305594dc964b 100644 --- a/sdk/applicationinsights/arm-appinsights/samples/v5-beta/javascript/README.md +++ b/sdk/applicationinsights/arm-appinsights/samples/v5-beta/javascript/README.md @@ -113,7 +113,7 @@ node analyticsItemsDeleteSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_SUBSCRIPTION_ID="" APPLICATIONINSIGHTS_RESOURCE_GROUP="" node analyticsItemsDeleteSample.js +cross-env APPLICATIONINSIGHTS_SUBSCRIPTION_ID="" APPLICATIONINSIGHTS_RESOURCE_GROUP="" node analyticsItemsDeleteSample.js ``` ## Next Steps diff --git a/sdk/applicationinsights/arm-appinsights/samples/v5-beta/typescript/README.md b/sdk/applicationinsights/arm-appinsights/samples/v5-beta/typescript/README.md index 649128ab0dca..4d9472c9d7c3 100644 --- a/sdk/applicationinsights/arm-appinsights/samples/v5-beta/typescript/README.md +++ b/sdk/applicationinsights/arm-appinsights/samples/v5-beta/typescript/README.md @@ -125,7 +125,7 @@ node dist/analyticsItemsDeleteSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_SUBSCRIPTION_ID="" APPLICATIONINSIGHTS_RESOURCE_GROUP="" node dist/analyticsItemsDeleteSample.js +cross-env APPLICATIONINSIGHTS_SUBSCRIPTION_ID="" APPLICATIONINSIGHTS_RESOURCE_GROUP="" node dist/analyticsItemsDeleteSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/package.json b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/package.json index 9872043bf50e..4bd591abd0b2 100644 --- a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/package.json +++ b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index a28e4aafa2c1..4b177748107e 100644 --- a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -66,7 +66,7 @@ node appServicePlansCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node appServicePlansCreateOrUpdateSample.js +cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node appServicePlansCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 2effc92e7192..fde48cc555a3 100644 --- a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -78,7 +78,7 @@ node dist/appServicePlansCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node dist/appServicePlansCreateOrUpdateSample.js +cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node dist/appServicePlansCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice-rest/package.json b/sdk/appservice/arm-appservice-rest/package.json index bacc57ef0a0a..966532d35e2c 100644 --- a/sdk/appservice/arm-appservice-rest/package.json +++ b/sdk/appservice/arm-appservice-rest/package.json @@ -42,11 +42,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -78,9 +78,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/appservice/arm-appservice-rest/samples/v1-beta/javascript/README.md b/sdk/appservice/arm-appservice-rest/samples/v1-beta/javascript/README.md index b5f4aeb950f2..f3b0ef2c62b8 100644 --- a/sdk/appservice/arm-appservice-rest/samples/v1-beta/javascript/README.md +++ b/sdk/appservice/arm-appservice-rest/samples/v1-beta/javascript/README.md @@ -44,7 +44,7 @@ node appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SUBSCRIPTION_ID="" node appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js +cross-env SUBSCRIPTION_ID="" node appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice-rest/samples/v1-beta/typescript/README.md b/sdk/appservice/arm-appservice-rest/samples/v1-beta/typescript/README.md index 73eced6786c3..24e3674a73d1 100644 --- a/sdk/appservice/arm-appservice-rest/samples/v1-beta/typescript/README.md +++ b/sdk/appservice/arm-appservice-rest/samples/v1-beta/typescript/README.md @@ -56,7 +56,7 @@ node dist/appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SUBSCRIPTION_ID="" node dist/appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js +cross-env SUBSCRIPTION_ID="" node dist/appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice/package.json b/sdk/appservice/arm-appservice/package.json index 5a7f296ca056..b186ca965607 100644 --- a/sdk/appservice/arm-appservice/package.json +++ b/sdk/appservice/arm-appservice/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/appservice/arm-appservice/samples/v17/javascript/README.md b/sdk/appservice/arm-appservice/samples/v17/javascript/README.md index 7c9803ca9a3f..caaf0b147a10 100644 --- a/sdk/appservice/arm-appservice/samples/v17/javascript/README.md +++ b/sdk/appservice/arm-appservice/samples/v17/javascript/README.md @@ -383,7 +383,7 @@ node appServiceCertificateOrdersCreateOrUpdateCertificateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node appServiceCertificateOrdersCreateOrUpdateCertificateSample.js +cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node appServiceCertificateOrdersCreateOrUpdateCertificateSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice/samples/v17/typescript/README.md b/sdk/appservice/arm-appservice/samples/v17/typescript/README.md index c9d371675635..d6fe838ffb8a 100644 --- a/sdk/appservice/arm-appservice/samples/v17/typescript/README.md +++ b/sdk/appservice/arm-appservice/samples/v17/typescript/README.md @@ -395,7 +395,7 @@ node dist/appServiceCertificateOrdersCreateOrUpdateCertificateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node dist/appServiceCertificateOrdersCreateOrUpdateCertificateSample.js +cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node dist/appServiceCertificateOrdersCreateOrUpdateCertificateSample.js ``` ## Next Steps diff --git a/sdk/astro/arm-astro/package.json b/sdk/astro/arm-astro/package.json index 500b1a95dde8..66d4a0b6ed7f 100644 --- a/sdk/astro/arm-astro/package.json +++ b/sdk/astro/arm-astro/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/astro/arm-astro/samples/v1-beta/javascript/README.md b/sdk/astro/arm-astro/samples/v1-beta/javascript/README.md index 6fae26fb5cd2..ec889bd254c7 100644 --- a/sdk/astro/arm-astro/samples/v1-beta/javascript/README.md +++ b/sdk/astro/arm-astro/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ASTRO_SUBSCRIPTION_ID="" node operationsListSample.js +cross-env ASTRO_SUBSCRIPTION_ID="" node operationsListSample.js ``` ## Next Steps diff --git a/sdk/astro/arm-astro/samples/v1-beta/typescript/README.md b/sdk/astro/arm-astro/samples/v1-beta/typescript/README.md index 28cc738a80af..fdad6e2f16f1 100644 --- a/sdk/astro/arm-astro/samples/v1-beta/typescript/README.md +++ b/sdk/astro/arm-astro/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ASTRO_SUBSCRIPTION_ID="" node dist/operationsListSample.js +cross-env ASTRO_SUBSCRIPTION_ID="" node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/attestation/arm-attestation/package.json b/sdk/attestation/arm-attestation/package.json index be784c200723..8c3471e77abb 100644 --- a/sdk/attestation/arm-attestation/package.json +++ b/sdk/attestation/arm-attestation/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/attestation/arm-attestation/samples/v2/javascript/README.md b/sdk/attestation/arm-attestation/samples/v2/javascript/README.md index a658917bdb4a..e73a480c3b0b 100644 --- a/sdk/attestation/arm-attestation/samples/v2/javascript/README.md +++ b/sdk/attestation/arm-attestation/samples/v2/javascript/README.md @@ -49,7 +49,7 @@ node attestationProvidersCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node attestationProvidersCreateSample.js +cross-env node attestationProvidersCreateSample.js ``` ## Next Steps diff --git a/sdk/attestation/arm-attestation/samples/v2/typescript/README.md b/sdk/attestation/arm-attestation/samples/v2/typescript/README.md index 45dc89a8c68a..1102332da8a7 100644 --- a/sdk/attestation/arm-attestation/samples/v2/typescript/README.md +++ b/sdk/attestation/arm-attestation/samples/v2/typescript/README.md @@ -61,7 +61,7 @@ node dist/attestationProvidersCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/attestationProvidersCreateSample.js +cross-env node dist/attestationProvidersCreateSample.js ``` ## Next Steps diff --git a/sdk/attestation/attestation/package.json b/sdk/attestation/attestation/package.json index 4e13b0a85af7..72b435856f06 100644 --- a/sdk/attestation/attestation/package.json +++ b/sdk/attestation/attestation/package.json @@ -23,11 +23,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:nodebrowser": "dev-tool run build-test", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -82,10 +82,14 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "buffer": "^6.0.0", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "safe-buffer": "^5.2.1", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/package.json b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/package.json index c49230e32b22..696dbb6c46a0 100644 --- a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/package.json +++ b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/javascript/README.md b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/javascript/README.md index 5086a26c3657..c3c75f7233b5 100644 --- a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/javascript/README.md +++ b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/javascript/README.md @@ -56,7 +56,7 @@ node globalAdministratorElevateAccessSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTHORIZATION_SUBSCRIPTION_ID="" node globalAdministratorElevateAccessSample.js +cross-env AUTHORIZATION_SUBSCRIPTION_ID="" node globalAdministratorElevateAccessSample.js ``` ## Next Steps diff --git a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/typescript/README.md b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/typescript/README.md index 0748c568529f..33d1d403ecfa 100644 --- a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/typescript/README.md +++ b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/typescript/README.md @@ -68,7 +68,7 @@ node dist/globalAdministratorElevateAccessSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTHORIZATION_SUBSCRIPTION_ID="" node dist/globalAdministratorElevateAccessSample.js +cross-env AUTHORIZATION_SUBSCRIPTION_ID="" node dist/globalAdministratorElevateAccessSample.js ``` ## Next Steps diff --git a/sdk/authorization/arm-authorization/package.json b/sdk/authorization/arm-authorization/package.json index 46f45825bc5e..307121465ac1 100644 --- a/sdk/authorization/arm-authorization/package.json +++ b/sdk/authorization/arm-authorization/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/authorization/arm-authorization/samples/v10-beta/javascript/README.md b/sdk/authorization/arm-authorization/samples/v10-beta/javascript/README.md index af81da7c7fb7..edeac3b89b14 100644 --- a/sdk/authorization/arm-authorization/samples/v10-beta/javascript/README.md +++ b/sdk/authorization/arm-authorization/samples/v10-beta/javascript/README.md @@ -135,7 +135,7 @@ node accessReviewInstanceAcceptRecommendationsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node accessReviewInstanceAcceptRecommendationsSample.js +cross-env node accessReviewInstanceAcceptRecommendationsSample.js ``` ## Next Steps diff --git a/sdk/authorization/arm-authorization/samples/v10-beta/typescript/README.md b/sdk/authorization/arm-authorization/samples/v10-beta/typescript/README.md index 6067ea9f13e2..e0101539fa7d 100644 --- a/sdk/authorization/arm-authorization/samples/v10-beta/typescript/README.md +++ b/sdk/authorization/arm-authorization/samples/v10-beta/typescript/README.md @@ -147,7 +147,7 @@ node dist/accessReviewInstanceAcceptRecommendationsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/accessReviewInstanceAcceptRecommendationsSample.js +cross-env node dist/accessReviewInstanceAcceptRecommendationsSample.js ``` ## Next Steps diff --git a/sdk/automanage/arm-automanage/package.json b/sdk/automanage/arm-automanage/package.json index 5fefcb373c2a..464747bc16fe 100644 --- a/sdk/automanage/arm-automanage/package.json +++ b/sdk/automanage/arm-automanage/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/automanage/arm-automanage/samples/v1/javascript/README.md b/sdk/automanage/arm-automanage/samples/v1/javascript/README.md index 84e8f2bbd738..4cc53974dcd9 100644 --- a/sdk/automanage/arm-automanage/samples/v1/javascript/README.md +++ b/sdk/automanage/arm-automanage/samples/v1/javascript/README.md @@ -73,7 +73,7 @@ node bestPracticesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTOMANAGE_SUBSCRIPTION_ID="" node bestPracticesGetSample.js +cross-env AUTOMANAGE_SUBSCRIPTION_ID="" node bestPracticesGetSample.js ``` ## Next Steps diff --git a/sdk/automanage/arm-automanage/samples/v1/typescript/README.md b/sdk/automanage/arm-automanage/samples/v1/typescript/README.md index debe99654480..9bfcec7a7559 100644 --- a/sdk/automanage/arm-automanage/samples/v1/typescript/README.md +++ b/sdk/automanage/arm-automanage/samples/v1/typescript/README.md @@ -85,7 +85,7 @@ node dist/bestPracticesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTOMANAGE_SUBSCRIPTION_ID="" node dist/bestPracticesGetSample.js +cross-env AUTOMANAGE_SUBSCRIPTION_ID="" node dist/bestPracticesGetSample.js ``` ## Next Steps diff --git a/sdk/automation/arm-automation/package.json b/sdk/automation/arm-automation/package.json index f25ce5eb5778..77a0527b1a2e 100644 --- a/sdk/automation/arm-automation/package.json +++ b/sdk/automation/arm-automation/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/automation/arm-automation/samples/v11-beta/javascript/README.md b/sdk/automation/arm-automation/samples/v11-beta/javascript/README.md index af65bfc3c2e1..35dcaff31e32 100644 --- a/sdk/automation/arm-automation/samples/v11-beta/javascript/README.md +++ b/sdk/automation/arm-automation/samples/v11-beta/javascript/README.md @@ -192,7 +192,7 @@ node activityGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTOMATION_SUBSCRIPTION_ID="" AUTOMATION_RESOURCE_GROUP="" node activityGetSample.js +cross-env AUTOMATION_SUBSCRIPTION_ID="" AUTOMATION_RESOURCE_GROUP="" node activityGetSample.js ``` ## Next Steps diff --git a/sdk/automation/arm-automation/samples/v11-beta/typescript/README.md b/sdk/automation/arm-automation/samples/v11-beta/typescript/README.md index 73e32c7af39d..9285cb5c954d 100644 --- a/sdk/automation/arm-automation/samples/v11-beta/typescript/README.md +++ b/sdk/automation/arm-automation/samples/v11-beta/typescript/README.md @@ -204,7 +204,7 @@ node dist/activityGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTOMATION_SUBSCRIPTION_ID="" AUTOMATION_RESOURCE_GROUP="" node dist/activityGetSample.js +cross-env AUTOMATION_SUBSCRIPTION_ID="" AUTOMATION_RESOURCE_GROUP="" node dist/activityGetSample.js ``` ## Next Steps diff --git a/sdk/avs/arm-avs/package.json b/sdk/avs/arm-avs/package.json index ef2dc02ebb59..4470f51dd828 100644 --- a/sdk/avs/arm-avs/package.json +++ b/sdk/avs/arm-avs/package.json @@ -99,20 +99,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/avs/arm-avs/samples/v7/javascript/README.md b/sdk/avs/arm-avs/samples/v7/javascript/README.md index d7fc274c70d4..70f71b7f75a7 100644 --- a/sdk/avs/arm-avs/samples/v7/javascript/README.md +++ b/sdk/avs/arm-avs/samples/v7/javascript/README.md @@ -148,7 +148,7 @@ node addonsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node addonsCreateOrUpdateSample.js +cross-env node addonsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/avs/arm-avs/samples/v7/typescript/README.md b/sdk/avs/arm-avs/samples/v7/typescript/README.md index 5e17fa4e2ad2..1d7f46d37178 100644 --- a/sdk/avs/arm-avs/samples/v7/typescript/README.md +++ b/sdk/avs/arm-avs/samples/v7/typescript/README.md @@ -160,7 +160,7 @@ node dist/addonsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/addonsCreateOrUpdateSample.js +cross-env node dist/addonsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/azureadexternalidentities/arm-azureadexternalidentities/package.json b/sdk/azureadexternalidentities/arm-azureadexternalidentities/package.json index 86e92cd9f922..ffee8b2eac4e 100644 --- a/sdk/azureadexternalidentities/arm-azureadexternalidentities/package.json +++ b/sdk/azureadexternalidentities/arm-azureadexternalidentities/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/javascript/README.md b/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/javascript/README.md index 2dfde43775cc..fc3320355ddb 100644 --- a/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/javascript/README.md +++ b/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/javascript/README.md @@ -50,7 +50,7 @@ node b2CTenantsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node b2CTenantsCheckNameAvailabilitySample.js +cross-env node b2CTenantsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/typescript/README.md b/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/typescript/README.md index d75ccc558134..5d7468b3cf70 100644 --- a/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/typescript/README.md +++ b/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/typescript/README.md @@ -62,7 +62,7 @@ node dist/b2CTenantsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/b2CTenantsCheckNameAvailabilitySample.js +cross-env node dist/b2CTenantsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/azurestack/arm-azurestack/package.json b/sdk/azurestack/arm-azurestack/package.json index 2784f79c1ad1..22237e583fd4 100644 --- a/sdk/azurestack/arm-azurestack/package.json +++ b/sdk/azurestack/arm-azurestack/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/azurestack/arm-azurestack/samples/v3-beta/javascript/README.md b/sdk/azurestack/arm-azurestack/samples/v3-beta/javascript/README.md index 3789b9e1c76f..97e3e92dfdab 100644 --- a/sdk/azurestack/arm-azurestack/samples/v3-beta/javascript/README.md +++ b/sdk/azurestack/arm-azurestack/samples/v3-beta/javascript/README.md @@ -63,7 +63,7 @@ node cloudManifestFileGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node cloudManifestFileGetSample.js +cross-env node cloudManifestFileGetSample.js ``` ## Next Steps diff --git a/sdk/azurestack/arm-azurestack/samples/v3-beta/typescript/README.md b/sdk/azurestack/arm-azurestack/samples/v3-beta/typescript/README.md index 731fecb2add7..3181685e0b74 100644 --- a/sdk/azurestack/arm-azurestack/samples/v3-beta/typescript/README.md +++ b/sdk/azurestack/arm-azurestack/samples/v3-beta/typescript/README.md @@ -75,7 +75,7 @@ node dist/cloudManifestFileGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/cloudManifestFileGetSample.js +cross-env node dist/cloudManifestFileGetSample.js ``` ## Next Steps diff --git a/sdk/azurestackhci/arm-azurestackhci/package.json b/sdk/azurestackhci/arm-azurestackhci/package.json index 672eb9c25450..daad6702f93c 100644 --- a/sdk/azurestackhci/arm-azurestackhci/package.json +++ b/sdk/azurestackhci/arm-azurestackhci/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/javascript/README.md b/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/javascript/README.md index cd6ddce88350..41af0cfedefe 100644 --- a/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/javascript/README.md +++ b/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/javascript/README.md @@ -96,7 +96,7 @@ node arcSettingsConsentAndInstallDefaultExtensionsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURESTACKHCI_SUBSCRIPTION_ID="" AZURESTACKHCI_RESOURCE_GROUP="" node arcSettingsConsentAndInstallDefaultExtensionsSample.js +cross-env AZURESTACKHCI_SUBSCRIPTION_ID="" AZURESTACKHCI_RESOURCE_GROUP="" node arcSettingsConsentAndInstallDefaultExtensionsSample.js ``` ## Next Steps diff --git a/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/typescript/README.md b/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/typescript/README.md index c85e5c6b47eb..7786710542c4 100644 --- a/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/typescript/README.md +++ b/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/typescript/README.md @@ -108,7 +108,7 @@ node dist/arcSettingsConsentAndInstallDefaultExtensionsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURESTACKHCI_SUBSCRIPTION_ID="" AZURESTACKHCI_RESOURCE_GROUP="" node dist/arcSettingsConsentAndInstallDefaultExtensionsSample.js +cross-env AZURESTACKHCI_SUBSCRIPTION_ID="" AZURESTACKHCI_RESOURCE_GROUP="" node dist/arcSettingsConsentAndInstallDefaultExtensionsSample.js ``` ## Next Steps diff --git a/sdk/azurestackhcivm/arm-azurestackhcivm/package.json b/sdk/azurestackhcivm/arm-azurestackhcivm/package.json index d6ffb1ffe4d1..0895b9590504 100644 --- a/sdk/azurestackhcivm/arm-azurestackhcivm/package.json +++ b/sdk/azurestackhcivm/arm-azurestackhcivm/package.json @@ -72,12 +72,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -89,29 +89,33 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/javascript/README.md b/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/javascript/README.md index c0f52c12339e..49efb97016ef 100644 --- a/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/javascript/README.md +++ b/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/javascript/README.md @@ -100,7 +100,7 @@ node attestationStatusesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node attestationStatusesGetSample.js +cross-env node attestationStatusesGetSample.js ``` ## Next Steps diff --git a/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/typescript/README.md b/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/typescript/README.md index 4cce3085b275..01284a96fd75 100644 --- a/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/typescript/README.md +++ b/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/typescript/README.md @@ -112,7 +112,7 @@ node dist/attestationStatusesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/attestationStatusesGetSample.js +cross-env node dist/attestationStatusesGetSample.js ``` ## Next Steps diff --git a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/package.json b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/package.json index 6ec28ae374bc..5b935a787151 100644 --- a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/package.json +++ b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/javascript/README.md b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/javascript/README.md index 98e51f6ad842..3db2889881c2 100644 --- a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/javascript/README.md +++ b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/javascript/README.md @@ -50,7 +50,7 @@ node azureBareMetalInstancesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node azureBareMetalInstancesGetSample.js +cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node azureBareMetalInstancesGetSample.js ``` ## Next Steps diff --git a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/typescript/README.md b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/typescript/README.md index 4db2bc1162a9..576616f70f51 100644 --- a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/typescript/README.md +++ b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/typescript/README.md @@ -62,7 +62,7 @@ node dist/azureBareMetalInstancesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node dist/azureBareMetalInstancesGetSample.js +cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node dist/azureBareMetalInstancesGetSample.js ``` ## Next Steps diff --git a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/javascript/README.md b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/javascript/README.md index 55972ec0bb61..537aa934d8bd 100644 --- a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/javascript/README.md +++ b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/javascript/README.md @@ -41,7 +41,7 @@ node azureBareMetalInstancesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node azureBareMetalInstancesGetSample.js +cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node azureBareMetalInstancesGetSample.js ``` ## Next Steps diff --git a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/typescript/README.md b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/typescript/README.md index cf2223715d1d..c77aa67fecac 100644 --- a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/typescript/README.md +++ b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/typescript/README.md @@ -53,7 +53,7 @@ node dist/azureBareMetalInstancesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node dist/azureBareMetalInstancesGetSample.js +cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node dist/azureBareMetalInstancesGetSample.js ``` ## Next Steps diff --git a/sdk/batch/arm-batch/package.json b/sdk/batch/arm-batch/package.json index 9a45eabf59ad..469575e88d37 100644 --- a/sdk/batch/arm-batch/package.json +++ b/sdk/batch/arm-batch/package.json @@ -39,8 +39,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/batch/arm-batch/samples/v10/javascript/README.md b/sdk/batch/arm-batch/samples/v10/javascript/README.md index 4c7c67de2045..19079dde5356 100644 --- a/sdk/batch/arm-batch/samples/v10/javascript/README.md +++ b/sdk/batch/arm-batch/samples/v10/javascript/README.md @@ -84,7 +84,7 @@ node applicationCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BATCH_SUBSCRIPTION_ID="" BATCH_RESOURCE_GROUP="" node applicationCreateSample.js +cross-env BATCH_SUBSCRIPTION_ID="" BATCH_RESOURCE_GROUP="" node applicationCreateSample.js ``` ## Next Steps diff --git a/sdk/batch/arm-batch/samples/v10/typescript/README.md b/sdk/batch/arm-batch/samples/v10/typescript/README.md index 695b79ad363f..9bc16d7b2a46 100644 --- a/sdk/batch/arm-batch/samples/v10/typescript/README.md +++ b/sdk/batch/arm-batch/samples/v10/typescript/README.md @@ -96,7 +96,7 @@ node dist/applicationCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BATCH_SUBSCRIPTION_ID="" BATCH_RESOURCE_GROUP="" node dist/applicationCreateSample.js +cross-env BATCH_SUBSCRIPTION_ID="" BATCH_RESOURCE_GROUP="" node dist/applicationCreateSample.js ``` ## Next Steps diff --git a/sdk/batch/batch-rest/package.json b/sdk/batch/batch-rest/package.json index 92774eddc375..450bf43d938d 100644 --- a/sdk/batch/batch-rest/package.json +++ b/sdk/batch/batch-rest/package.json @@ -59,8 +59,8 @@ "@azure/core-auth": "^1.6.0", "@azure/core-rest-pipeline": "^1.5.0", "@azure/logger": "^1.0.0", - "tslib": "^2.6.2", - "moment": "~2.30.1" + "moment": "~2.30.1", + "tslib": "^2.6.2" }, "devDependencies": { "@azure-tools/test-credential": "workspace:^", @@ -72,21 +72,25 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "moment": "^2.30.1", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && npm run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/batch/batch-rest/samples/v1-beta/javascript/README.md b/sdk/batch/batch-rest/samples/v1-beta/javascript/README.md index 10603d1c2152..fbd63575bdd8 100644 --- a/sdk/batch/batch-rest/samples/v1-beta/javascript/README.md +++ b/sdk/batch/batch-rest/samples/v1-beta/javascript/README.md @@ -37,7 +37,7 @@ node quick-start.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BATCH_ACCOUNT_ENDPOINT="" node quick-start.js +cross-env BATCH_ACCOUNT_ENDPOINT="" node quick-start.js ``` ## Next Steps diff --git a/sdk/batch/batch-rest/samples/v1-beta/typescript/README.md b/sdk/batch/batch-rest/samples/v1-beta/typescript/README.md index dab491c516a6..d2ece55c87ae 100644 --- a/sdk/batch/batch-rest/samples/v1-beta/typescript/README.md +++ b/sdk/batch/batch-rest/samples/v1-beta/typescript/README.md @@ -49,7 +49,7 @@ node dist/quick-start.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BATCH_ACCOUNT_ENDPOINT="" node dist/quick-start.js +cross-env BATCH_ACCOUNT_ENDPOINT="" node dist/quick-start.js ``` ## Next Steps diff --git a/sdk/billing/arm-billing/package.json b/sdk/billing/arm-billing/package.json index 5c3e444b226d..5714c2aa5156 100644 --- a/sdk/billing/arm-billing/package.json +++ b/sdk/billing/arm-billing/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/billing/arm-billing/samples/v5/javascript/README.md b/sdk/billing/arm-billing/samples/v5/javascript/README.md index d6683f5a6e2a..6d068d8a955e 100644 --- a/sdk/billing/arm-billing/samples/v5/javascript/README.md +++ b/sdk/billing/arm-billing/samples/v5/javascript/README.md @@ -224,7 +224,7 @@ node addressValidateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node addressValidateSample.js +cross-env node addressValidateSample.js ``` ## Next Steps diff --git a/sdk/billing/arm-billing/samples/v5/typescript/README.md b/sdk/billing/arm-billing/samples/v5/typescript/README.md index 0b398979a324..9e589c61d908 100644 --- a/sdk/billing/arm-billing/samples/v5/typescript/README.md +++ b/sdk/billing/arm-billing/samples/v5/typescript/README.md @@ -236,7 +236,7 @@ node dist/addressValidateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/addressValidateSample.js +cross-env node dist/addressValidateSample.js ``` ## Next Steps diff --git a/sdk/billingbenefits/arm-billingbenefits/package.json b/sdk/billingbenefits/arm-billingbenefits/package.json index d0f8e48658dd..0e72b1bf396e 100644 --- a/sdk/billingbenefits/arm-billingbenefits/package.json +++ b/sdk/billingbenefits/arm-billingbenefits/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/billingbenefits/arm-billingbenefits/samples/v1/javascript/README.md b/sdk/billingbenefits/arm-billingbenefits/samples/v1/javascript/README.md index 9d75d25cdbb7..1b5480ae0627 100644 --- a/sdk/billingbenefits/arm-billingbenefits/samples/v1/javascript/README.md +++ b/sdk/billingbenefits/arm-billingbenefits/samples/v1/javascript/README.md @@ -50,7 +50,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/billingbenefits/arm-billingbenefits/samples/v1/typescript/README.md b/sdk/billingbenefits/arm-billingbenefits/samples/v1/typescript/README.md index 2466a1375967..bb9dc5c909f1 100644 --- a/sdk/billingbenefits/arm-billingbenefits/samples/v1/typescript/README.md +++ b/sdk/billingbenefits/arm-billingbenefits/samples/v1/typescript/README.md @@ -62,7 +62,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/botservice/arm-botservice/package.json b/sdk/botservice/arm-botservice/package.json index ce2d3f66b585..6736c8e4cebd 100644 --- a/sdk/botservice/arm-botservice/package.json +++ b/sdk/botservice/arm-botservice/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/botservice/arm-botservice/samples/v4/javascript/README.md b/sdk/botservice/arm-botservice/samples/v4/javascript/README.md index 5c9b67560235..59bb38c5b5d2 100644 --- a/sdk/botservice/arm-botservice/samples/v4/javascript/README.md +++ b/sdk/botservice/arm-botservice/samples/v4/javascript/README.md @@ -67,7 +67,7 @@ node botConnectionCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BOTSERVICE_SUBSCRIPTION_ID="" BOTSERVICE_RESOURCE_GROUP="" node botConnectionCreateSample.js +cross-env BOTSERVICE_SUBSCRIPTION_ID="" BOTSERVICE_RESOURCE_GROUP="" node botConnectionCreateSample.js ``` ## Next Steps diff --git a/sdk/botservice/arm-botservice/samples/v4/typescript/README.md b/sdk/botservice/arm-botservice/samples/v4/typescript/README.md index 36954050a68b..7b4ddd92188b 100644 --- a/sdk/botservice/arm-botservice/samples/v4/typescript/README.md +++ b/sdk/botservice/arm-botservice/samples/v4/typescript/README.md @@ -79,7 +79,7 @@ node dist/botConnectionCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BOTSERVICE_SUBSCRIPTION_ID="" BOTSERVICE_RESOURCE_GROUP="" node dist/botConnectionCreateSample.js +cross-env BOTSERVICE_SUBSCRIPTION_ID="" BOTSERVICE_RESOURCE_GROUP="" node dist/botConnectionCreateSample.js ``` ## Next Steps diff --git a/sdk/carbonoptimization/arm-carbonoptimization/package.json b/sdk/carbonoptimization/arm-carbonoptimization/package.json index b82bad0c25c8..41f354ccc69a 100644 --- a/sdk/carbonoptimization/arm-carbonoptimization/package.json +++ b/sdk/carbonoptimization/arm-carbonoptimization/package.json @@ -62,10 +62,10 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/core-auth": "^1.9.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -77,22 +77,26 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/javascript/README.md b/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/javascript/README.md index 3ad7aecf8021..2f25e51da379 100644 --- a/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/javascript/README.md +++ b/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/javascript/README.md @@ -39,7 +39,7 @@ node carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js +cross-env node carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js ``` ## Next Steps diff --git a/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/typescript/README.md b/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/typescript/README.md index f915cce3d4c8..a9acce8f710c 100644 --- a/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/typescript/README.md +++ b/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/typescript/README.md @@ -51,7 +51,7 @@ node dist/carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js +cross-env node dist/carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js ``` ## Next Steps diff --git a/sdk/cdn/arm-cdn/package.json b/sdk/cdn/arm-cdn/package.json index e4758ea2a056..7440ed06a581 100644 --- a/sdk/cdn/arm-cdn/package.json +++ b/sdk/cdn/arm-cdn/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/README.md b/sdk/cdn/arm-cdn/samples/v9/javascript/README.md index e7836c474d20..11dd375f957d 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/README.md +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/README.md @@ -148,7 +148,7 @@ node afdCustomDomainsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CDN_SUBSCRIPTION_ID="" CDN_RESOURCE_GROUP="" node afdCustomDomainsCreateSample.js +cross-env CDN_SUBSCRIPTION_ID="" CDN_RESOURCE_GROUP="" node afdCustomDomainsCreateSample.js ``` ## Next Steps diff --git a/sdk/cdn/arm-cdn/samples/v9/typescript/README.md b/sdk/cdn/arm-cdn/samples/v9/typescript/README.md index 5b25e14df150..bd20b9aa3f3c 100644 --- a/sdk/cdn/arm-cdn/samples/v9/typescript/README.md +++ b/sdk/cdn/arm-cdn/samples/v9/typescript/README.md @@ -160,7 +160,7 @@ node dist/afdCustomDomainsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CDN_SUBSCRIPTION_ID="" CDN_RESOURCE_GROUP="" node dist/afdCustomDomainsCreateSample.js +cross-env CDN_SUBSCRIPTION_ID="" CDN_RESOURCE_GROUP="" node dist/afdCustomDomainsCreateSample.js ``` ## Next Steps diff --git a/sdk/changeanalysis/arm-changeanalysis/package.json b/sdk/changeanalysis/arm-changeanalysis/package.json index 80ace87032cc..472a21fd2dd9 100644 --- a/sdk/changeanalysis/arm-changeanalysis/package.json +++ b/sdk/changeanalysis/arm-changeanalysis/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/changeanalysis/arm-changeanalysis/samples/v2/javascript/README.md b/sdk/changeanalysis/arm-changeanalysis/samples/v2/javascript/README.md index 1d76fa7f812a..4f9fdf5a031e 100644 --- a/sdk/changeanalysis/arm-changeanalysis/samples/v2/javascript/README.md +++ b/sdk/changeanalysis/arm-changeanalysis/samples/v2/javascript/README.md @@ -40,7 +40,7 @@ node changesListChangesByResourceGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node changesListChangesByResourceGroupSample.js +cross-env node changesListChangesByResourceGroupSample.js ``` ## Next Steps diff --git a/sdk/changeanalysis/arm-changeanalysis/samples/v2/typescript/README.md b/sdk/changeanalysis/arm-changeanalysis/samples/v2/typescript/README.md index d29dbb707537..32d4d2ef099c 100644 --- a/sdk/changeanalysis/arm-changeanalysis/samples/v2/typescript/README.md +++ b/sdk/changeanalysis/arm-changeanalysis/samples/v2/typescript/README.md @@ -52,7 +52,7 @@ node dist/changesListChangesByResourceGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/changesListChangesByResourceGroupSample.js +cross-env node dist/changesListChangesByResourceGroupSample.js ``` ## Next Steps diff --git a/sdk/changes/arm-changes/package.json b/sdk/changes/arm-changes/package.json index 9e37071bb050..43ab53848ca2 100644 --- a/sdk/changes/arm-changes/package.json +++ b/sdk/changes/arm-changes/package.json @@ -35,7 +35,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,7 +58,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/changes/arm-changes/samples/v1/javascript/README.md b/sdk/changes/arm-changes/samples/v1/javascript/README.md index 9e91b4c43a5c..4757bc82b23d 100644 --- a/sdk/changes/arm-changes/samples/v1/javascript/README.md +++ b/sdk/changes/arm-changes/samples/v1/javascript/README.md @@ -38,7 +38,7 @@ node changesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node changesGetSample.js +cross-env node changesGetSample.js ``` ## Next Steps diff --git a/sdk/changes/arm-changes/samples/v1/typescript/README.md b/sdk/changes/arm-changes/samples/v1/typescript/README.md index ce9712749104..3be4be8f34f5 100644 --- a/sdk/changes/arm-changes/samples/v1/typescript/README.md +++ b/sdk/changes/arm-changes/samples/v1/typescript/README.md @@ -50,7 +50,7 @@ node dist/changesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/changesGetSample.js +cross-env node dist/changesGetSample.js ``` ## Next Steps diff --git a/sdk/chaos/arm-chaos/package.json b/sdk/chaos/arm-chaos/package.json index 25ea7624d057..03466c74b97e 100644 --- a/sdk/chaos/arm-chaos/package.json +++ b/sdk/chaos/arm-chaos/package.json @@ -80,27 +80,31 @@ "@azure-tools/test-credential": "workspace:^", "@azure-tools/test-recorder": "workspace:^", "@azure-tools/test-utils-vitest": "workspace:^", + "@azure/arm-cosmosdb": "16.0.0-beta.6", "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", - "@azure/arm-cosmosdb": "16.0.0-beta.6", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/chaos/arm-chaos/samples/v2/javascript/README.md b/sdk/chaos/arm-chaos/samples/v2/javascript/README.md index c0dfa7498a5e..13ec4fa7203e 100644 --- a/sdk/chaos/arm-chaos/samples/v2/javascript/README.md +++ b/sdk/chaos/arm-chaos/samples/v2/javascript/README.md @@ -61,7 +61,7 @@ node capabilitiesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node capabilitiesCreateOrUpdateSample.js +cross-env node capabilitiesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/chaos/arm-chaos/samples/v2/typescript/README.md b/sdk/chaos/arm-chaos/samples/v2/typescript/README.md index 815f04b866e3..fdb6b5a91a0b 100644 --- a/sdk/chaos/arm-chaos/samples/v2/typescript/README.md +++ b/sdk/chaos/arm-chaos/samples/v2/typescript/README.md @@ -73,7 +73,7 @@ node dist/capabilitiesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/capabilitiesCreateOrUpdateSample.js +cross-env node dist/capabilitiesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cloudhealth/arm-cloudhealth/package.json b/sdk/cloudhealth/arm-cloudhealth/package.json index 2d007ce25bde..4d5f46a931fb 100644 --- a/sdk/cloudhealth/arm-cloudhealth/package.json +++ b/sdk/cloudhealth/arm-cloudhealth/package.json @@ -85,20 +85,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/javascript/README.md b/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/javascript/README.md index 80695b1de8a0..ec6f4dcb5443 100644 --- a/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/javascript/README.md +++ b/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/javascript/README.md @@ -63,7 +63,7 @@ node authenticationSettingsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node authenticationSettingsCreateOrUpdateSample.js +cross-env node authenticationSettingsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/typescript/README.md b/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/typescript/README.md index 767f53a35abe..79ccb8f43196 100644 --- a/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/typescript/README.md +++ b/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/typescript/README.md @@ -75,7 +75,7 @@ node dist/authenticationSettingsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/authenticationSettingsCreateOrUpdateSample.js +cross-env node dist/authenticationSettingsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cognitivelanguage/ai-language-conversations/package.json b/sdk/cognitivelanguage/ai-language-conversations/package.json index e7f63652a243..fcc18c937f0e 100644 --- a/sdk/cognitivelanguage/ai-language-conversations/package.json +++ b/sdk/cognitivelanguage/ai-language-conversations/package.json @@ -41,9 +41,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,11 +64,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", diff --git a/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/javascript/README.md b/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/javascript/README.md index cd09c337c7b4..0d35886a42a7 100644 --- a/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/javascript/README.md +++ b/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/javascript/README.md @@ -56,7 +56,7 @@ node analyzeConversationApp.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LANGUAGE_ENDPOINT="" AZURE_CONVERSATIONS_PROJECT_NAME="" AZURE_CONVERSATIONS_DEPLOYMENT_NAME="" node analyzeConversationApp.js +cross-env LANGUAGE_ENDPOINT="" AZURE_CONVERSATIONS_PROJECT_NAME="" AZURE_CONVERSATIONS_DEPLOYMENT_NAME="" node analyzeConversationApp.js ``` ## Next Steps diff --git a/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/typescript/README.md b/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/typescript/README.md index f4b68a2eabc3..92f806f5b7ce 100644 --- a/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/typescript/README.md +++ b/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/typescript/README.md @@ -68,7 +68,7 @@ node dist/analyzeConversationApp.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LANGUAGE_ENDPOINT="" AZURE_CONVERSATIONS_PROJECT_NAME="" AZURE_CONVERSATIONS_DEPLOYMENT_NAME="" node dist/analyzeConversationApp.js +cross-env LANGUAGE_ENDPOINT="" AZURE_CONVERSATIONS_PROJECT_NAME="" AZURE_CONVERSATIONS_DEPLOYMENT_NAME="" node dist/analyzeConversationApp.js ``` ## Next Steps diff --git a/sdk/cognitivelanguage/ai-language-text-perf-tests/package.json b/sdk/cognitivelanguage/ai-language-text-perf-tests/package.json index c85157120bf1..1de324e4215d 100644 --- a/sdk/cognitivelanguage/ai-language-text-perf-tests/package.json +++ b/sdk/cognitivelanguage/ai-language-text-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/cognitivelanguage/ai-language-text/package.json b/sdk/cognitivelanguage/ai-language-text/package.json index 2451003177c9..7f4cd5ffcd94 100644 --- a/sdk/cognitivelanguage/ai-language-text/package.json +++ b/sdk/cognitivelanguage/ai-language-text/package.json @@ -64,11 +64,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -105,9 +105,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "chai-exclude": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "unzipper": "~0.12.3", "vitest": "catalog:testing" diff --git a/sdk/cognitivelanguage/ai-language-text/samples/v1/javascript/README.md b/sdk/cognitivelanguage/ai-language-text/samples/v1/javascript/README.md index 5470c90f19b5..b9727fa8cf4a 100644 --- a/sdk/cognitivelanguage/ai-language-text/samples/v1/javascript/README.md +++ b/sdk/cognitivelanguage/ai-language-text/samples/v1/javascript/README.md @@ -67,7 +67,7 @@ node entityLinking.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LANGUAGE_ENDPOINT="" node entityLinking.js +cross-env LANGUAGE_ENDPOINT="" node entityLinking.js ``` ## Next Steps diff --git a/sdk/cognitivelanguage/ai-language-text/samples/v1/typescript/README.md b/sdk/cognitivelanguage/ai-language-text/samples/v1/typescript/README.md index cb48caa5fcaa..2e44899eca7a 100644 --- a/sdk/cognitivelanguage/ai-language-text/samples/v1/typescript/README.md +++ b/sdk/cognitivelanguage/ai-language-text/samples/v1/typescript/README.md @@ -79,7 +79,7 @@ node dist/entityLinking.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LANGUAGE_ENDPOINT="" node dist/entityLinking.js +cross-env LANGUAGE_ENDPOINT="" node dist/entityLinking.js ``` ## Next Steps diff --git a/sdk/cognitiveservices/arm-cognitiveservices/package.json b/sdk/cognitiveservices/arm-cognitiveservices/package.json index a66fdffed74b..a680078ef711 100644 --- a/sdk/cognitiveservices/arm-cognitiveservices/package.json +++ b/sdk/cognitiveservices/arm-cognitiveservices/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,18 +30,22 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -55,19 +59,19 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", + "extract-api": "dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", - "test:node:esm": "dev-tool run test:vitest --esm" + "test:node": "dev-tool run test:vitest", + "test:node:esm": "dev-tool run test:vitest --esm", + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/javascript/README.md b/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/javascript/README.md index 7ea28e480907..1fcbd4ef7449 100644 --- a/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/javascript/README.md +++ b/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/javascript/README.md @@ -143,7 +143,7 @@ node accountCapabilityHostsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node accountCapabilityHostsCreateOrUpdateSample.js +cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node accountCapabilityHostsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/typescript/README.md b/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/typescript/README.md index 8c4a906a1d8d..beae4d6aa084 100644 --- a/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/typescript/README.md +++ b/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/typescript/README.md @@ -155,7 +155,7 @@ node dist/accountCapabilityHostsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node dist/accountCapabilityHostsCreateOrUpdateSample.js +cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node dist/accountCapabilityHostsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/javascript/README.md b/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/javascript/README.md index 80d0ad54fa34..1c17db5e8e86 100644 --- a/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/javascript/README.md +++ b/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/javascript/README.md @@ -143,7 +143,7 @@ node accountCapabilityHostsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node accountCapabilityHostsCreateOrUpdateSample.js +cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node accountCapabilityHostsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/typescript/README.md b/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/typescript/README.md index 3613312b1a81..e100b77da029 100644 --- a/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/typescript/README.md +++ b/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/typescript/README.md @@ -155,7 +155,7 @@ node dist/accountCapabilityHostsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node dist/accountCapabilityHostsCreateOrUpdateSample.js +cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node dist/accountCapabilityHostsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/package.json b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/package.json index a6d89feedcfa..7a00eecb5a4a 100644 --- a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/package.json +++ b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 9999fa80b026..45eb19188761 100644 --- a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -37,7 +37,7 @@ node rateCardGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMERCE_SUBSCRIPTION_ID="" node rateCardGetSample.js +cross-env COMMERCE_SUBSCRIPTION_ID="" node rateCardGetSample.js ``` ## Next Steps diff --git a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 0eb5d0b19d13..8c8d37c793e8 100644 --- a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -49,7 +49,7 @@ node dist/rateCardGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMERCE_SUBSCRIPTION_ID="" node dist/rateCardGetSample.js +cross-env COMMERCE_SUBSCRIPTION_ID="" node dist/rateCardGetSample.js ``` ## Next Steps diff --git a/sdk/commerce/arm-commerce/package.json b/sdk/commerce/arm-commerce/package.json index ab883bf416d8..5ef2654f9594 100644 --- a/sdk/commerce/arm-commerce/package.json +++ b/sdk/commerce/arm-commerce/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/commerce/arm-commerce/samples/v4-beta/javascript/README.md b/sdk/commerce/arm-commerce/samples/v4-beta/javascript/README.md index aef88d5f596a..d47085b21ddd 100644 --- a/sdk/commerce/arm-commerce/samples/v4-beta/javascript/README.md +++ b/sdk/commerce/arm-commerce/samples/v4-beta/javascript/README.md @@ -38,7 +38,7 @@ node getRateCard.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node getRateCard.js +cross-env node getRateCard.js ``` ## Next Steps diff --git a/sdk/commerce/arm-commerce/samples/v4-beta/typescript/README.md b/sdk/commerce/arm-commerce/samples/v4-beta/typescript/README.md index 73c906279289..ab0813dfec91 100644 --- a/sdk/commerce/arm-commerce/samples/v4-beta/typescript/README.md +++ b/sdk/commerce/arm-commerce/samples/v4-beta/typescript/README.md @@ -50,7 +50,7 @@ node dist/getRateCard.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/getRateCard.js +cross-env node dist/getRateCard.js ``` ## Next Steps diff --git a/sdk/communication/arm-communication/package.json b/sdk/communication/arm-communication/package.json index a3d815e154ce..bf3048721492 100644 --- a/sdk/communication/arm-communication/package.json +++ b/sdk/communication/arm-communication/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/communication/arm-communication/samples/v4/javascript/README.md b/sdk/communication/arm-communication/samples/v4/javascript/README.md index d4676a2892b4..21ea1211923f 100644 --- a/sdk/communication/arm-communication/samples/v4/javascript/README.md +++ b/sdk/communication/arm-communication/samples/v4/javascript/README.md @@ -65,7 +65,7 @@ node communicationServicesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SUBSCRIPTION_ID="" node communicationServicesCheckNameAvailabilitySample.js +cross-env COMMUNICATION_SUBSCRIPTION_ID="" node communicationServicesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/communication/arm-communication/samples/v4/typescript/README.md b/sdk/communication/arm-communication/samples/v4/typescript/README.md index 34d6a823061f..02728284b4de 100644 --- a/sdk/communication/arm-communication/samples/v4/typescript/README.md +++ b/sdk/communication/arm-communication/samples/v4/typescript/README.md @@ -77,7 +77,7 @@ node dist/communicationServicesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SUBSCRIPTION_ID="" node dist/communicationServicesCheckNameAvailabilitySample.js +cross-env COMMUNICATION_SUBSCRIPTION_ID="" node dist/communicationServicesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/communication/communication-alpha-ids/package.json b/sdk/communication/communication-alpha-ids/package.json index 24e88bb0f3b1..04cc891acf83 100644 --- a/sdk/communication/communication-alpha-ids/package.json +++ b/sdk/communication/communication-alpha-ids/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest --typescript --v3 ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -68,9 +68,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-call-automation/package.json b/sdk/communication/communication-call-automation/package.json index 6e9a024ed2a8..8c429cb111d3 100644 --- a/sdk/communication/communication-call-automation/package.json +++ b/sdk/communication/communication-call-automation/package.json @@ -11,11 +11,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -87,10 +87,14 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "inherits": "^2.0.3", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-chat/package.json b/sdk/communication/communication-chat/package.json index a0039e0a1f11..42ba50134fa9 100644 --- a/sdk/communication/communication-chat/package.json +++ b/sdk/communication/communication-chat/package.json @@ -9,11 +9,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -72,9 +72,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-chat/samples/v1/javascript/README.md b/sdk/communication/communication-chat/samples/v1/javascript/README.md index 64a9d01d159f..6732f99b7f40 100644 --- a/sdk/communication/communication-chat/samples/v1/javascript/README.md +++ b/sdk/communication/communication-chat/samples/v1/javascript/README.md @@ -51,7 +51,7 @@ node messageOperations.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node messageOperations.js +cross-env COMMUNICATION_CONNECTION_STRING="" node messageOperations.js ``` ## Next Steps diff --git a/sdk/communication/communication-chat/samples/v1/typescript/README.md b/sdk/communication/communication-chat/samples/v1/typescript/README.md index 096cba16c230..78a070929d75 100644 --- a/sdk/communication/communication-chat/samples/v1/typescript/README.md +++ b/sdk/communication/communication-chat/samples/v1/typescript/README.md @@ -63,7 +63,7 @@ node dist/messageOperations.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node dist/messageOperations.js +cross-env COMMUNICATION_CONNECTION_STRING="" node dist/messageOperations.js ``` ## Next Steps diff --git a/sdk/communication/communication-common/package.json b/sdk/communication/communication-common/package.json index b3ad057c68cf..44b1d27645e7 100644 --- a/sdk/communication/communication-common/package.json +++ b/sdk/communication/communication-common/package.json @@ -10,11 +10,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -68,10 +68,14 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "mockdate": "^3.0.5", "nock": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-email/package.json b/sdk/communication/communication-email/package.json index 885baa5ef0be..b79143391a45 100644 --- a/sdk/communication/communication-email/package.json +++ b/sdk/communication/communication-email/package.json @@ -11,11 +11,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "dev-tool samples publish -f", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -58,9 +58,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-email/samples/v1-beta/javascript/README.md b/sdk/communication/communication-email/samples/v1-beta/javascript/README.md index 123437df9079..82f1e7792060 100644 --- a/sdk/communication/communication-email/samples/v1-beta/javascript/README.md +++ b/sdk/communication/communication-email/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node sendEmailMultipleRecipients.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_ENDPOINT="" SENDER_ADDRESS="" RECIPIENT_ADDRESS="" SECOND_RECIPIENT_ADDRESS="" node sendEmailMultipleRecipients.js +cross-env COMMUNICATION_ENDPOINT="" SENDER_ADDRESS="" RECIPIENT_ADDRESS="" SECOND_RECIPIENT_ADDRESS="" node sendEmailMultipleRecipients.js ``` ## Next Steps diff --git a/sdk/communication/communication-email/samples/v1-beta/typescript/README.md b/sdk/communication/communication-email/samples/v1-beta/typescript/README.md index f1227470bc7b..f22caef119e9 100644 --- a/sdk/communication/communication-email/samples/v1-beta/typescript/README.md +++ b/sdk/communication/communication-email/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/sendEmailMultipleRecipients.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_ENDPOINT="" SENDER_ADDRESS="" RECIPIENT_ADDRESS="" SECOND_RECIPIENT_ADDRESS="" node dist/sendEmailMultipleRecipients.js +cross-env COMMUNICATION_ENDPOINT="" SENDER_ADDRESS="" RECIPIENT_ADDRESS="" SECOND_RECIPIENT_ADDRESS="" node dist/sendEmailMultipleRecipients.js ``` ## Next Steps diff --git a/sdk/communication/communication-identity/package.json b/sdk/communication/communication-identity/package.json index f4649ee675a8..b58719cf4857 100644 --- a/sdk/communication/communication-identity/package.json +++ b/sdk/communication/communication-identity/package.json @@ -9,13 +9,13 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:js-samples": "dev-tool samples run dist-samples/javascript", "execute:samples": "dev-tool samples run samples-dev", "execute:ts-samples": "dev-tool samples run dist-samples/typescript/dist/dist-samples/typescript/src/", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -106,9 +106,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-identity/samples/v1/javascript/README.md b/sdk/communication/communication-identity/samples/v1/javascript/README.md index 0bc6f09bcaf8..1b2c7bdce974 100644 --- a/sdk/communication/communication-identity/samples/v1/javascript/README.md +++ b/sdk/communication/communication-identity/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node createUserAndToken.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node createUserAndToken.js +cross-env COMMUNICATION_CONNECTION_STRING="" node createUserAndToken.js ``` ## Next Steps diff --git a/sdk/communication/communication-identity/samples/v1/typescript/README.md b/sdk/communication/communication-identity/samples/v1/typescript/README.md index 01e02499a8ad..aabf0ee336da 100644 --- a/sdk/communication/communication-identity/samples/v1/typescript/README.md +++ b/sdk/communication/communication-identity/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/createUserAndToken.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node dist/createUserAndToken.js +cross-env COMMUNICATION_CONNECTION_STRING="" node dist/createUserAndToken.js ``` ## Next Steps diff --git a/sdk/communication/communication-job-router-rest/package.json b/sdk/communication/communication-job-router-rest/package.json index 39a3fe9a0eb6..4ac3d7db8e0e 100644 --- a/sdk/communication/communication-job-router-rest/package.json +++ b/sdk/communication/communication-job-router-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-job-router-rest/samples/v1-beta/javascript/README.md b/sdk/communication/communication-job-router-rest/samples/v1-beta/javascript/README.md index c5b7d8dbc04e..4dc73bb5eba5 100644 --- a/sdk/communication/communication-job-router-rest/samples/v1-beta/javascript/README.md +++ b/sdk/communication/communication-job-router-rest/samples/v1-beta/javascript/README.md @@ -78,7 +78,7 @@ node ClassificationPolicy_Create.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node ClassificationPolicy_Create.js +cross-env COMMUNICATION_CONNECTION_STRING="" node ClassificationPolicy_Create.js ``` ## Next Steps diff --git a/sdk/communication/communication-job-router-rest/samples/v1-beta/typescript/README.md b/sdk/communication/communication-job-router-rest/samples/v1-beta/typescript/README.md index 74c1cd8315b0..dd100b602fd2 100644 --- a/sdk/communication/communication-job-router-rest/samples/v1-beta/typescript/README.md +++ b/sdk/communication/communication-job-router-rest/samples/v1-beta/typescript/README.md @@ -90,7 +90,7 @@ node dist/ClassificationPolicy_Create.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node dist/ClassificationPolicy_Create.js +cross-env COMMUNICATION_CONNECTION_STRING="" node dist/ClassificationPolicy_Create.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/package.json b/sdk/communication/communication-messages-rest/package.json index 3c663cdc5749..783118305829 100644 --- a/sdk/communication/communication-messages-rest/package.json +++ b/sdk/communication/communication-messages-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -73,9 +73,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-messages-rest/samples/v1/javascript/README.md b/sdk/communication/communication-messages-rest/samples/v1/javascript/README.md index ab28fb0a0cc4..a65ef0158d39 100644 --- a/sdk/communication/communication-messages-rest/samples/v1/javascript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v1/javascript/README.md @@ -42,7 +42,7 @@ node DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/samples/v1/typescript/README.md b/sdk/communication/communication-messages-rest/samples/v1/typescript/README.md index 89279a0c5930..9f60cb8a3f65 100644 --- a/sdk/communication/communication-messages-rest/samples/v1/typescript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v1/typescript/README.md @@ -54,7 +54,7 @@ node dist/DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/samples/v2-beta/javascript/README.md b/sdk/communication/communication-messages-rest/samples/v2-beta/javascript/README.md index 7ae92e7a85bd..42ba13730943 100644 --- a/sdk/communication/communication-messages-rest/samples/v2-beta/javascript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v2-beta/javascript/README.md @@ -63,7 +63,7 @@ node DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/samples/v2-beta/typescript/README.md b/sdk/communication/communication-messages-rest/samples/v2-beta/typescript/README.md index e5c872bec7aa..8c01632731f9 100644 --- a/sdk/communication/communication-messages-rest/samples/v2-beta/typescript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v2-beta/typescript/README.md @@ -75,7 +75,7 @@ node dist/DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/samples/v2/javascript/README.md b/sdk/communication/communication-messages-rest/samples/v2/javascript/README.md index d7bc6477441a..a2db9f3473b3 100644 --- a/sdk/communication/communication-messages-rest/samples/v2/javascript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v2/javascript/README.md @@ -55,7 +55,7 @@ node DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/samples/v2/typescript/README.md b/sdk/communication/communication-messages-rest/samples/v2/typescript/README.md index 04c044af67c4..d0e168e8726e 100644 --- a/sdk/communication/communication-messages-rest/samples/v2/typescript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v2/typescript/README.md @@ -67,7 +67,7 @@ node dist/DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-phone-numbers/package.json b/sdk/communication/communication-phone-numbers/package.json index b0734e7be39b..abebbb498d0e 100644 --- a/sdk/communication/communication-phone-numbers/package.json +++ b/sdk/communication/communication-phone-numbers/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:clean": "pnpm install && pnpm build", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -71,9 +71,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-phone-numbers/samples/v1/javascript/README.md b/sdk/communication/communication-phone-numbers/samples/v1/javascript/README.md index 18f8c3c620e2..533380ee2231 100644 --- a/sdk/communication/communication-phone-numbers/samples/v1/javascript/README.md +++ b/sdk/communication/communication-phone-numbers/samples/v1/javascript/README.md @@ -55,7 +55,7 @@ node getPurchasedPhoneNumber.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" PHONE_NUMBER_TO_GET="" AZURE_PHONE_NUMBER="" node getPurchasedPhoneNumber.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" PHONE_NUMBER_TO_GET="" AZURE_PHONE_NUMBER="" node getPurchasedPhoneNumber.js ``` ## Next Steps diff --git a/sdk/communication/communication-phone-numbers/samples/v1/typescript/README.md b/sdk/communication/communication-phone-numbers/samples/v1/typescript/README.md index 2799ea4636c4..ca3484be8c94 100644 --- a/sdk/communication/communication-phone-numbers/samples/v1/typescript/README.md +++ b/sdk/communication/communication-phone-numbers/samples/v1/typescript/README.md @@ -67,7 +67,7 @@ node dist/getPurchasedPhoneNumber.ts Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" PHONE_NUMBER_TO_GET="" AZURE_PHONE_NUMBER="" node dist/getPurchasedPhoneNumber.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" PHONE_NUMBER_TO_GET="" AZURE_PHONE_NUMBER="" node dist/getPurchasedPhoneNumber.js ``` ## Next Steps diff --git a/sdk/communication/communication-recipient-verification/package.json b/sdk/communication/communication-recipient-verification/package.json index 898a0172c7a7..bb7db4bf1228 100644 --- a/sdk/communication/communication-recipient-verification/package.json +++ b/sdk/communication/communication-recipient-verification/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest --typescript ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -69,9 +69,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-recipient-verification/samples/v1-beta/javascript/README.md b/sdk/communication/communication-recipient-verification/samples/v1-beta/javascript/README.md index 80942dbda6e8..8beb068fa652 100644 --- a/sdk/communication/communication-recipient-verification/samples/v1-beta/javascript/README.md +++ b/sdk/communication/communication-recipient-verification/samples/v1-beta/javascript/README.md @@ -53,7 +53,7 @@ node deleteVerification.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" VERIFICATION_ID="" node deleteVerification.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" VERIFICATION_ID="" node deleteVerification.js ``` ## Next Steps diff --git a/sdk/communication/communication-recipient-verification/samples/v1-beta/typescript/README.md b/sdk/communication/communication-recipient-verification/samples/v1-beta/typescript/README.md index b5a1198610c1..9c23ae1af9cf 100644 --- a/sdk/communication/communication-recipient-verification/samples/v1-beta/typescript/README.md +++ b/sdk/communication/communication-recipient-verification/samples/v1-beta/typescript/README.md @@ -65,7 +65,7 @@ node dist/deleteVerification.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" VERIFICATION_ID="" node dist/deleteVerification.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" VERIFICATION_ID="" node dist/deleteVerification.js ``` ## Next Steps diff --git a/sdk/communication/communication-rooms/package.json b/sdk/communication/communication-rooms/package.json index 38432f8a4e27..f346b57aaa1c 100644 --- a/sdk/communication/communication-rooms/package.json +++ b/sdk/communication/communication-rooms/package.json @@ -44,9 +44,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -63,14 +67,14 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript --disable-async-iterators ./swagger/README.md", - "lint": "dev-tool run vendored eslint package.json src test", - "lint:fix": "dev-tool run vendored eslint package.json src test --fix --fix-type [problem,suggestion]", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", "test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser", diff --git a/sdk/communication/communication-rooms/samples/v1/javascript/README.md b/sdk/communication/communication-rooms/samples/v1/javascript/README.md index 624282b5208e..890e8004cc23 100644 --- a/sdk/communication/communication-rooms/samples/v1/javascript/README.md +++ b/sdk/communication/communication-rooms/samples/v1/javascript/README.md @@ -50,7 +50,7 @@ node participantOperations.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node participantOperations.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node participantOperations.js ``` ## Next Steps diff --git a/sdk/communication/communication-rooms/samples/v1/typescript/README.md b/sdk/communication/communication-rooms/samples/v1/typescript/README.md index c540e85e14e3..b837b4d200c4 100644 --- a/sdk/communication/communication-rooms/samples/v1/typescript/README.md +++ b/sdk/communication/communication-rooms/samples/v1/typescript/README.md @@ -62,7 +62,7 @@ node dist/participantOperations.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/participantOperations.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/participantOperations.js ``` ## Next Steps diff --git a/sdk/communication/communication-short-codes/package.json b/sdk/communication/communication-short-codes/package.json index eb1cd76ab563..8c03de0b2035 100644 --- a/sdk/communication/communication-short-codes/package.json +++ b/sdk/communication/communication-short-codes/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest --typescript ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -69,9 +69,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-short-codes/samples/v1/javascript/README.md b/sdk/communication/communication-short-codes/samples/v1/javascript/README.md index ea75dbaf9251..d9b80f83f052 100644 --- a/sdk/communication/communication-short-codes/samples/v1/javascript/README.md +++ b/sdk/communication/communication-short-codes/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node createAndDeleteProgramBrief.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node createAndDeleteProgramBrief.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node createAndDeleteProgramBrief.js ``` ## Next Steps diff --git a/sdk/communication/communication-short-codes/samples/v1/typescript/README.md b/sdk/communication/communication-short-codes/samples/v1/typescript/README.md index 17d0201d7297..1c2ceab73121 100644 --- a/sdk/communication/communication-short-codes/samples/v1/typescript/README.md +++ b/sdk/communication/communication-short-codes/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/createAndDeleteProgramBrief.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/createAndDeleteProgramBrief.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/createAndDeleteProgramBrief.js ``` ## Next Steps diff --git a/sdk/communication/communication-sms/package.json b/sdk/communication/communication-sms/package.json index cfd7d3f6a543..393c9588f07f 100644 --- a/sdk/communication/communication-sms/package.json +++ b/sdk/communication/communication-sms/package.json @@ -10,11 +10,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -70,9 +70,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-sms/samples/v1-beta/javascript/README.md b/sdk/communication/communication-sms/samples/v1-beta/javascript/README.md index edc03bdaeed2..01f813feb37d 100644 --- a/sdk/communication/communication-sms/samples/v1-beta/javascript/README.md +++ b/sdk/communication/communication-sms/samples/v1-beta/javascript/README.md @@ -52,7 +52,7 @@ node sendSms.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" node sendSms.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" node sendSms.js ``` ## Next Steps diff --git a/sdk/communication/communication-sms/samples/v1-beta/typescript/README.md b/sdk/communication/communication-sms/samples/v1-beta/typescript/README.md index 8572a8479e2b..7ccf357add5e 100644 --- a/sdk/communication/communication-sms/samples/v1-beta/typescript/README.md +++ b/sdk/communication/communication-sms/samples/v1-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/sendSms.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" node dist/sendSms.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" node dist/sendSms.js ``` ## Next Steps diff --git a/sdk/communication/communication-sms/samples/v1/javascript/README.md b/sdk/communication/communication-sms/samples/v1/javascript/README.md index 74827fda681d..4433b5ed3a24 100644 --- a/sdk/communication/communication-sms/samples/v1/javascript/README.md +++ b/sdk/communication/communication-sms/samples/v1/javascript/README.md @@ -55,7 +55,7 @@ node sendSms.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" FROM_PHONE_NUMBER="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" node sendSms.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" FROM_PHONE_NUMBER="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" node sendSms.js ``` ## Next Steps diff --git a/sdk/communication/communication-sms/samples/v1/typescript/README.md b/sdk/communication/communication-sms/samples/v1/typescript/README.md index e4a2d007829e..552c22f08b69 100644 --- a/sdk/communication/communication-sms/samples/v1/typescript/README.md +++ b/sdk/communication/communication-sms/samples/v1/typescript/README.md @@ -66,7 +66,7 @@ node dist/sendSms.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" AZURE_PHONE_NUMBER="" node dist/sendSms.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" AZURE_PHONE_NUMBER="" node dist/sendSms.js ``` ## Next Steps diff --git a/sdk/communication/communication-tiering/package.json b/sdk/communication/communication-tiering/package.json index 5a8c4d7c76dd..fc996a1ef9ab 100644 --- a/sdk/communication/communication-tiering/package.json +++ b/sdk/communication/communication-tiering/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest --typescript ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -69,9 +69,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-tiering/samples/v1-beta/javascript/README.md b/sdk/communication/communication-tiering/samples/v1-beta/javascript/README.md index be1912eae8cc..2d0490ac6a8f 100644 --- a/sdk/communication/communication-tiering/samples/v1-beta/javascript/README.md +++ b/sdk/communication/communication-tiering/samples/v1-beta/javascript/README.md @@ -50,7 +50,7 @@ node getAcquiredNumberLimits.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node getAcquiredNumberLimits.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node getAcquiredNumberLimits.js ``` ## Next Steps diff --git a/sdk/communication/communication-tiering/samples/v1-beta/typescript/README.md b/sdk/communication/communication-tiering/samples/v1-beta/typescript/README.md index 601cb05765d4..963ebee3c3ae 100644 --- a/sdk/communication/communication-tiering/samples/v1-beta/typescript/README.md +++ b/sdk/communication/communication-tiering/samples/v1-beta/typescript/README.md @@ -62,7 +62,7 @@ node dist/getAcquiredNumberLimits.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/getAcquiredNumberLimits.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/getAcquiredNumberLimits.js ``` ## Next Steps diff --git a/sdk/communication/communication-toll-free-verification/package.json b/sdk/communication/communication-toll-free-verification/package.json index f3b4b7549c3d..9c0448f5dc62 100644 --- a/sdk/communication/communication-toll-free-verification/package.json +++ b/sdk/communication/communication-toll-free-verification/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest --typescript --v3 ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -68,9 +68,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/package.json b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/package.json index 0ea1d74b0ce2..88a2cf104b0a 100644 --- a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/package.json +++ b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 9508a6c97d74..188e33b2e25c 100644 --- a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -96,7 +96,7 @@ node availabilitySetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node availabilitySetsCreateOrUpdateSample.js +cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node availabilitySetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index d9b3b06cd296..aaa69c46bf4f 100644 --- a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -108,7 +108,7 @@ node dist/availabilitySetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node dist/availabilitySetsCreateOrUpdateSample.js +cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node dist/availabilitySetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-compute-rest/package.json b/sdk/compute/arm-compute-rest/package.json index 054e2d668e38..4531ef80f463 100644 --- a/sdk/compute/arm-compute-rest/package.json +++ b/sdk/compute/arm-compute-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -70,9 +70,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/compute/arm-compute-rest/samples/v1-beta/javascript/README.md b/sdk/compute/arm-compute-rest/samples/v1-beta/javascript/README.md index 4ad263b1e44b..722e5e3cc0b0 100644 --- a/sdk/compute/arm-compute-rest/samples/v1-beta/javascript/README.md +++ b/sdk/compute/arm-compute-rest/samples/v1-beta/javascript/README.md @@ -315,7 +315,7 @@ node availabilitySetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node availabilitySetsCreateOrUpdateSample.js +cross-env node availabilitySetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-compute-rest/samples/v1-beta/typescript/README.md b/sdk/compute/arm-compute-rest/samples/v1-beta/typescript/README.md index 37f62d913657..db495bfb665e 100644 --- a/sdk/compute/arm-compute-rest/samples/v1-beta/typescript/README.md +++ b/sdk/compute/arm-compute-rest/samples/v1-beta/typescript/README.md @@ -327,7 +327,7 @@ node dist/availabilitySetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/availabilitySetsCreateOrUpdateSample.js +cross-env node dist/availabilitySetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-compute/package.json b/sdk/compute/arm-compute/package.json index ddb489848893..1d4496e4c152 100644 --- a/sdk/compute/arm-compute/package.json +++ b/sdk/compute/arm-compute/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,20 +30,24 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", + "@azure/arm-network": "^32.2.0", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", - "vitest": "catalog:testing", - "@azure/arm-network": "^32.2.0" + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", + "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", "bugs": { @@ -56,19 +60,19 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", + "extract-api": "dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", - "test:node:esm": "dev-tool run test:vitest --esm" + "test:node": "dev-tool run test:vitest", + "test:node:esm": "dev-tool run test:vitest --esm", + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/compute/arm-compute/samples/v23/javascript/README.md b/sdk/compute/arm-compute/samples/v23/javascript/README.md index 9af4e0fd0a30..94c437bde55d 100644 --- a/sdk/compute/arm-compute/samples/v23/javascript/README.md +++ b/sdk/compute/arm-compute/samples/v23/javascript/README.md @@ -340,7 +340,7 @@ node availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js +cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-compute/samples/v23/typescript/README.md b/sdk/compute/arm-compute/samples/v23/typescript/README.md index 45892c35a8c1..b1c6cd03d7d7 100644 --- a/sdk/compute/arm-compute/samples/v23/typescript/README.md +++ b/sdk/compute/arm-compute/samples/v23/typescript/README.md @@ -352,7 +352,7 @@ node dist/availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node dist/availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js +cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node dist/availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-computerecommender/package.json b/sdk/compute/arm-computerecommender/package.json index de89a1c295b3..30e5c0fdf23b 100644 --- a/sdk/compute/arm-computerecommender/package.json +++ b/sdk/compute/arm-computerecommender/package.json @@ -62,10 +62,10 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/core-auth": "^1.9.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -77,30 +77,34 @@ "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/identity": "^4.9.0", "@types/node": "^20.0.0", - "eslint": "^9.9.0", "@vitest/browser": "^3.0.9", "@vitest/coverage-istanbul": "^3.0.9", + "cross-env": "catalog:", "dotenv": "^16.0.0", + "eslint": "^9.9.0", "playwright": "^1.52.0", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "~5.8.2", "vitest": "^3.0.9" }, "scripts": { - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", + "extract-api": "rimraf review && dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/compute/arm-computerecommender/samples/v1/javascript/README.md b/sdk/compute/arm-computerecommender/samples/v1/javascript/README.md index 34ba362cdbbb..508b52dd0366 100644 --- a/sdk/compute/arm-computerecommender/samples/v1/javascript/README.md +++ b/sdk/compute/arm-computerecommender/samples/v1/javascript/README.md @@ -39,7 +39,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-computerecommender/samples/v1/typescript/README.md b/sdk/compute/arm-computerecommender/samples/v1/typescript/README.md index f590a2ebf1c0..288949ca681d 100644 --- a/sdk/compute/arm-computerecommender/samples/v1/typescript/README.md +++ b/sdk/compute/arm-computerecommender/samples/v1/typescript/README.md @@ -51,7 +51,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/computefleet/arm-computefleet/package.json b/sdk/computefleet/arm-computefleet/package.json index d6b7e1dc7ea2..7646f55bd648 100644 --- a/sdk/computefleet/arm-computefleet/package.json +++ b/sdk/computefleet/arm-computefleet/package.json @@ -62,12 +62,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -79,30 +79,34 @@ "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/identity": "^4.9.0", "@types/node": "^20.0.0", - "eslint": "^9.9.0", "@vitest/browser": "^3.0.9", "@vitest/coverage-istanbul": "^3.0.9", + "cross-env": "catalog:", "dotenv": "^16.0.0", + "eslint": "^9.9.0", "playwright": "^1.52.0", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "~5.8.2", "vitest": "^3.0.9" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/computefleet/arm-computefleet/samples/v2-beta/javascript/README.md b/sdk/computefleet/arm-computefleet/samples/v2-beta/javascript/README.md index f93cf4351521..bcf2a2f5f0cd 100644 --- a/sdk/computefleet/arm-computefleet/samples/v2-beta/javascript/README.md +++ b/sdk/computefleet/arm-computefleet/samples/v2-beta/javascript/README.md @@ -46,7 +46,7 @@ node fleetsCancelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node fleetsCancelSample.js +cross-env node fleetsCancelSample.js ``` ## Next Steps diff --git a/sdk/computefleet/arm-computefleet/samples/v2-beta/typescript/README.md b/sdk/computefleet/arm-computefleet/samples/v2-beta/typescript/README.md index be55a191a96c..aa2cb96c3509 100644 --- a/sdk/computefleet/arm-computefleet/samples/v2-beta/typescript/README.md +++ b/sdk/computefleet/arm-computefleet/samples/v2-beta/typescript/README.md @@ -58,7 +58,7 @@ node dist/fleetsCancelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/fleetsCancelSample.js +cross-env node dist/fleetsCancelSample.js ``` ## Next Steps diff --git a/sdk/computeschedule/arm-computeschedule/package.json b/sdk/computeschedule/arm-computeschedule/package.json index d967eab3fcf9..fbf985763d4e 100644 --- a/sdk/computeschedule/arm-computeschedule/package.json +++ b/sdk/computeschedule/arm-computeschedule/package.json @@ -65,12 +65,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -82,11 +82,15 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -94,12 +98,12 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "lint": "echo skipped", "lint:fix": "echo skipped", "pack": "pnpm pack 2>&1", - "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", diff --git a/sdk/computeschedule/arm-computeschedule/samples/v1-beta/javascript/README.md b/sdk/computeschedule/arm-computeschedule/samples/v1-beta/javascript/README.md index b1445d83b08e..672bb53059e7 100644 --- a/sdk/computeschedule/arm-computeschedule/samples/v1-beta/javascript/README.md +++ b/sdk/computeschedule/arm-computeschedule/samples/v1-beta/javascript/README.md @@ -69,7 +69,7 @@ node occurrenceExtensionListOccurrenceByVmsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node occurrenceExtensionListOccurrenceByVmsSample.js +cross-env node occurrenceExtensionListOccurrenceByVmsSample.js ``` ## Next Steps diff --git a/sdk/computeschedule/arm-computeschedule/samples/v1-beta/typescript/README.md b/sdk/computeschedule/arm-computeschedule/samples/v1-beta/typescript/README.md index 6c9d6c6246a8..96f0496c3f00 100644 --- a/sdk/computeschedule/arm-computeschedule/samples/v1-beta/typescript/README.md +++ b/sdk/computeschedule/arm-computeschedule/samples/v1-beta/typescript/README.md @@ -81,7 +81,7 @@ node dist/occurrenceExtensionListOccurrenceByVmsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/occurrenceExtensionListOccurrenceByVmsSample.js +cross-env node dist/occurrenceExtensionListOccurrenceByVmsSample.js ``` ## Next Steps diff --git a/sdk/confidentialledger/arm-confidentialledger/package.json b/sdk/confidentialledger/arm-confidentialledger/package.json index 26be5a3162ad..5d44424394e5 100644 --- a/sdk/confidentialledger/arm-confidentialledger/package.json +++ b/sdk/confidentialledger/arm-confidentialledger/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/javascript/README.md b/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/javascript/README.md index 65a2401a2057..c6018021664f 100644 --- a/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/javascript/README.md +++ b/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/javascript/README.md @@ -54,7 +54,7 @@ node checkNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONFIDENTIALLEDGER_SUBSCRIPTION_ID="" node checkNameAvailabilitySample.js +cross-env CONFIDENTIALLEDGER_SUBSCRIPTION_ID="" node checkNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/typescript/README.md b/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/typescript/README.md index 9b876cf2f1f0..1aafac0cd712 100644 --- a/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/typescript/README.md +++ b/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/typescript/README.md @@ -66,7 +66,7 @@ node dist/checkNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONFIDENTIALLEDGER_SUBSCRIPTION_ID="" node dist/checkNameAvailabilitySample.js +cross-env CONFIDENTIALLEDGER_SUBSCRIPTION_ID="" node dist/checkNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/confidentialledger/confidential-ledger-rest/package.json b/sdk/confidentialledger/confidential-ledger-rest/package.json index 4a3949c000a0..ba4bfffc58be 100644 --- a/sdk/confidentialledger/confidential-ledger-rest/package.json +++ b/sdk/confidentialledger/confidential-ledger-rest/package.json @@ -51,11 +51,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -83,8 +83,12 @@ "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/javascript/README.md b/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/javascript/README.md index 03bc9db59cd9..59af2be63f0f 100644 --- a/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/javascript/README.md +++ b/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/javascript/README.md @@ -40,7 +40,7 @@ node getEnclaveQuotesCert.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env USER_CERT="" USER_CERT_KEY="" ENDPOINT="" LEDGER_ID="" node getEnclaveQuotesCert.js +cross-env USER_CERT="" USER_CERT_KEY="" ENDPOINT="" LEDGER_ID="" node getEnclaveQuotesCert.js ``` ## Next Steps diff --git a/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/typescript/README.md b/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/typescript/README.md index dcd58d4b5b84..bedecbb59644 100644 --- a/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/typescript/README.md +++ b/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/typescript/README.md @@ -52,7 +52,7 @@ node dist/getEnclaveQuotesCert.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env USER_CERT="" USER_CERT_KEY="" ENDPOINT="" LEDGER_ID="" node dist/getEnclaveQuotesCert.js +cross-env USER_CERT="" USER_CERT_KEY="" ENDPOINT="" LEDGER_ID="" node dist/getEnclaveQuotesCert.js ``` ## Next Steps diff --git a/sdk/confluent/arm-confluent/package.json b/sdk/confluent/arm-confluent/package.json index fd56b0cca885..a233563fe616 100644 --- a/sdk/confluent/arm-confluent/package.json +++ b/sdk/confluent/arm-confluent/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/confluent/arm-confluent/samples/v3/javascript/README.md b/sdk/confluent/arm-confluent/samples/v3/javascript/README.md index aea192b3080c..d9ed99d4431a 100644 --- a/sdk/confluent/arm-confluent/samples/v3/javascript/README.md +++ b/sdk/confluent/arm-confluent/samples/v3/javascript/README.md @@ -67,7 +67,7 @@ node accessCreateRoleBindingSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONFLUENT_SUBSCRIPTION_ID="" CONFLUENT_RESOURCE_GROUP="" node accessCreateRoleBindingSample.js +cross-env CONFLUENT_SUBSCRIPTION_ID="" CONFLUENT_RESOURCE_GROUP="" node accessCreateRoleBindingSample.js ``` ## Next Steps diff --git a/sdk/confluent/arm-confluent/samples/v3/typescript/README.md b/sdk/confluent/arm-confluent/samples/v3/typescript/README.md index 8263462b22f1..52b5aa64c863 100644 --- a/sdk/confluent/arm-confluent/samples/v3/typescript/README.md +++ b/sdk/confluent/arm-confluent/samples/v3/typescript/README.md @@ -79,7 +79,7 @@ node dist/accessCreateRoleBindingSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONFLUENT_SUBSCRIPTION_ID="" CONFLUENT_RESOURCE_GROUP="" node dist/accessCreateRoleBindingSample.js +cross-env CONFLUENT_SUBSCRIPTION_ID="" CONFLUENT_RESOURCE_GROUP="" node dist/accessCreateRoleBindingSample.js ``` ## Next Steps diff --git a/sdk/connectedcache/arm-connectedcache/package.json b/sdk/connectedcache/arm-connectedcache/package.json index 0e63b68bacb3..a6ec2c8f4eae 100644 --- a/sdk/connectedcache/arm-connectedcache/package.json +++ b/sdk/connectedcache/arm-connectedcache/package.json @@ -76,20 +76,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/connectedcache/arm-connectedcache/samples/v1-beta/javascript/README.md b/sdk/connectedcache/arm-connectedcache/samples/v1-beta/javascript/README.md index 1c6b752133a1..d2b623e241ee 100644 --- a/sdk/connectedcache/arm-connectedcache/samples/v1-beta/javascript/README.md +++ b/sdk/connectedcache/arm-connectedcache/samples/v1-beta/javascript/README.md @@ -74,7 +74,7 @@ node cacheNodesOperationsCreateorUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node cacheNodesOperationsCreateorUpdateSample.js +cross-env node cacheNodesOperationsCreateorUpdateSample.js ``` ## Next Steps diff --git a/sdk/connectedcache/arm-connectedcache/samples/v1-beta/typescript/README.md b/sdk/connectedcache/arm-connectedcache/samples/v1-beta/typescript/README.md index 6bd83f34fbbb..957ec1776052 100644 --- a/sdk/connectedcache/arm-connectedcache/samples/v1-beta/typescript/README.md +++ b/sdk/connectedcache/arm-connectedcache/samples/v1-beta/typescript/README.md @@ -86,7 +86,7 @@ node dist/cacheNodesOperationsCreateorUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/cacheNodesOperationsCreateorUpdateSample.js +cross-env node dist/cacheNodesOperationsCreateorUpdateSample.js ``` ## Next Steps diff --git a/sdk/connectedvmware/arm-connectedvmware/package.json b/sdk/connectedvmware/arm-connectedvmware/package.json index a6971da217ef..e0d253b82215 100644 --- a/sdk/connectedvmware/arm-connectedvmware/package.json +++ b/sdk/connectedvmware/arm-connectedvmware/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/connectedvmware/arm-connectedvmware/samples/v1/javascript/README.md b/sdk/connectedvmware/arm-connectedvmware/samples/v1/javascript/README.md index c47378559e24..cac83dae3589 100644 --- a/sdk/connectedvmware/arm-connectedvmware/samples/v1/javascript/README.md +++ b/sdk/connectedvmware/arm-connectedvmware/samples/v1/javascript/README.md @@ -97,7 +97,7 @@ node clustersCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONNECTEDVMWARE_SUBSCRIPTION_ID="" CONNECTEDVMWARE_RESOURCE_GROUP="" node clustersCreateSample.js +cross-env CONNECTEDVMWARE_SUBSCRIPTION_ID="" CONNECTEDVMWARE_RESOURCE_GROUP="" node clustersCreateSample.js ``` ## Next Steps diff --git a/sdk/connectedvmware/arm-connectedvmware/samples/v1/typescript/README.md b/sdk/connectedvmware/arm-connectedvmware/samples/v1/typescript/README.md index ec9ba763aa05..b8845e3d0d6a 100644 --- a/sdk/connectedvmware/arm-connectedvmware/samples/v1/typescript/README.md +++ b/sdk/connectedvmware/arm-connectedvmware/samples/v1/typescript/README.md @@ -109,7 +109,7 @@ node dist/clustersCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONNECTEDVMWARE_SUBSCRIPTION_ID="" CONNECTEDVMWARE_RESOURCE_GROUP="" node dist/clustersCreateSample.js +cross-env CONNECTEDVMWARE_SUBSCRIPTION_ID="" CONNECTEDVMWARE_RESOURCE_GROUP="" node dist/clustersCreateSample.js ``` ## Next Steps diff --git a/sdk/consumption/arm-consumption/package.json b/sdk/consumption/arm-consumption/package.json index f9dee621e264..28d02e1ff8c2 100644 --- a/sdk/consumption/arm-consumption/package.json +++ b/sdk/consumption/arm-consumption/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/consumption/arm-consumption/samples/v9/javascript/README.md b/sdk/consumption/arm-consumption/samples/v9/javascript/README.md index 04600130793d..4e6e3486c193 100644 --- a/sdk/consumption/arm-consumption/samples/v9/javascript/README.md +++ b/sdk/consumption/arm-consumption/samples/v9/javascript/README.md @@ -65,7 +65,7 @@ node aggregatedCostGetByManagementGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONSUMPTION_SUBSCRIPTION_ID="" node aggregatedCostGetByManagementGroupSample.js +cross-env CONSUMPTION_SUBSCRIPTION_ID="" node aggregatedCostGetByManagementGroupSample.js ``` ## Next Steps diff --git a/sdk/consumption/arm-consumption/samples/v9/typescript/README.md b/sdk/consumption/arm-consumption/samples/v9/typescript/README.md index fd962831c585..cd76f4af8bc7 100644 --- a/sdk/consumption/arm-consumption/samples/v9/typescript/README.md +++ b/sdk/consumption/arm-consumption/samples/v9/typescript/README.md @@ -77,7 +77,7 @@ node dist/aggregatedCostGetByManagementGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONSUMPTION_SUBSCRIPTION_ID="" node dist/aggregatedCostGetByManagementGroupSample.js +cross-env CONSUMPTION_SUBSCRIPTION_ID="" node dist/aggregatedCostGetByManagementGroupSample.js ``` ## Next Steps diff --git a/sdk/containerinstance/arm-containerinstance/package.json b/sdk/containerinstance/arm-containerinstance/package.json index a54d1a982fee..f9e5ef09baf9 100644 --- a/sdk/containerinstance/arm-containerinstance/package.json +++ b/sdk/containerinstance/arm-containerinstance/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/containerinstance/arm-containerinstance/samples/v9-beta/javascript/README.md b/sdk/containerinstance/arm-containerinstance/samples/v9-beta/javascript/README.md index 411a02db3462..a4406aa80a30 100644 --- a/sdk/containerinstance/arm-containerinstance/samples/v9-beta/javascript/README.md +++ b/sdk/containerinstance/arm-containerinstance/samples/v9-beta/javascript/README.md @@ -61,7 +61,7 @@ node containerGroupProfileGetByRevisionNumberSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node containerGroupProfileGetByRevisionNumberSample.js +cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node containerGroupProfileGetByRevisionNumberSample.js ``` ## Next Steps diff --git a/sdk/containerinstance/arm-containerinstance/samples/v9-beta/typescript/README.md b/sdk/containerinstance/arm-containerinstance/samples/v9-beta/typescript/README.md index 35c011306617..94e82a67f17c 100644 --- a/sdk/containerinstance/arm-containerinstance/samples/v9-beta/typescript/README.md +++ b/sdk/containerinstance/arm-containerinstance/samples/v9-beta/typescript/README.md @@ -73,7 +73,7 @@ node dist/containerGroupProfileGetByRevisionNumberSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node dist/containerGroupProfileGetByRevisionNumberSample.js +cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node dist/containerGroupProfileGetByRevisionNumberSample.js ``` ## Next Steps diff --git a/sdk/containerinstance/arm-containerinstance/samples/v9/javascript/README.md b/sdk/containerinstance/arm-containerinstance/samples/v9/javascript/README.md index 76b56a56ca16..9a3d683a0d64 100644 --- a/sdk/containerinstance/arm-containerinstance/samples/v9/javascript/README.md +++ b/sdk/containerinstance/arm-containerinstance/samples/v9/javascript/README.md @@ -53,7 +53,7 @@ node containerGroupsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node containerGroupsCreateOrUpdateSample.js +cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node containerGroupsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/containerinstance/arm-containerinstance/samples/v9/typescript/README.md b/sdk/containerinstance/arm-containerinstance/samples/v9/typescript/README.md index 18fc5aa4de79..2f53d4ce186f 100644 --- a/sdk/containerinstance/arm-containerinstance/samples/v9/typescript/README.md +++ b/sdk/containerinstance/arm-containerinstance/samples/v9/typescript/README.md @@ -65,7 +65,7 @@ node dist/containerGroupsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node dist/containerGroupsCreateOrUpdateSample.js +cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node dist/containerGroupsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/containerregistry/arm-containerregistry/package.json b/sdk/containerregistry/arm-containerregistry/package.json index 08d616f4efc8..148a38e8d15a 100644 --- a/sdk/containerregistry/arm-containerregistry/package.json +++ b/sdk/containerregistry/arm-containerregistry/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/containerregistry/arm-containerregistry/samples/v11-beta/javascript/README.md b/sdk/containerregistry/arm-containerregistry/samples/v11-beta/javascript/README.md index e9d6f350883c..45bb04f35274 100644 --- a/sdk/containerregistry/arm-containerregistry/samples/v11-beta/javascript/README.md +++ b/sdk/containerregistry/arm-containerregistry/samples/v11-beta/javascript/README.md @@ -140,7 +140,7 @@ node agentPoolsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERREGISTRY_SUBSCRIPTION_ID="" CONTAINERREGISTRY_RESOURCE_GROUP="" node agentPoolsCreateSample.js +cross-env CONTAINERREGISTRY_SUBSCRIPTION_ID="" CONTAINERREGISTRY_RESOURCE_GROUP="" node agentPoolsCreateSample.js ``` ## Next Steps diff --git a/sdk/containerregistry/arm-containerregistry/samples/v11-beta/typescript/README.md b/sdk/containerregistry/arm-containerregistry/samples/v11-beta/typescript/README.md index 94f902f5dde3..8520df01bcec 100644 --- a/sdk/containerregistry/arm-containerregistry/samples/v11-beta/typescript/README.md +++ b/sdk/containerregistry/arm-containerregistry/samples/v11-beta/typescript/README.md @@ -152,7 +152,7 @@ node dist/agentPoolsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERREGISTRY_SUBSCRIPTION_ID="" CONTAINERREGISTRY_RESOURCE_GROUP="" node dist/agentPoolsCreateSample.js +cross-env CONTAINERREGISTRY_SUBSCRIPTION_ID="" CONTAINERREGISTRY_RESOURCE_GROUP="" node dist/agentPoolsCreateSample.js ``` ## Next Steps diff --git a/sdk/containerregistry/container-registry-perf-tests/package.json b/sdk/containerregistry/container-registry-perf-tests/package.json index 820bb60b1fa3..0f434d130bef 100644 --- a/sdk/containerregistry/container-registry-perf-tests/package.json +++ b/sdk/containerregistry/container-registry-perf-tests/package.json @@ -52,17 +52,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm test-dist types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm test-dist types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/containerregistry/container-registry/package.json b/sdk/containerregistry/container-registry/package.json index 9fd92b469fa0..e6e7ea9fd054 100644 --- a/sdk/containerregistry/container-registry/package.json +++ b/sdk/containerregistry/container-registry/package.json @@ -26,11 +26,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -83,9 +83,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/containerregistry/container-registry/samples/v1/javascript/README.md b/sdk/containerregistry/container-registry/samples/v1/javascript/README.md index 1a5320bba069..2334a06a7bfb 100644 --- a/sdk/containerregistry/container-registry/samples/v1/javascript/README.md +++ b/sdk/containerregistry/container-registry/samples/v1/javascript/README.md @@ -60,7 +60,7 @@ node containerRegistryClient.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINER_REGISTRY_ENDPOINT="" node containerRegistryClient.js +cross-env CONTAINER_REGISTRY_ENDPOINT="" node containerRegistryClient.js ``` ## Next Steps diff --git a/sdk/containerregistry/container-registry/samples/v1/typescript/README.md b/sdk/containerregistry/container-registry/samples/v1/typescript/README.md index 98b81912410f..966adb9b2942 100644 --- a/sdk/containerregistry/container-registry/samples/v1/typescript/README.md +++ b/sdk/containerregistry/container-registry/samples/v1/typescript/README.md @@ -72,7 +72,7 @@ node dist/containerRegistryClient.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINER_REGISTRY_ENDPOINT="" node dist/containerRegistryClient.js +cross-env CONTAINER_REGISTRY_ENDPOINT="" node dist/containerRegistryClient.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservice-rest/package.json b/sdk/containerservice/arm-containerservice-rest/package.json index 76ffbb669d41..1041216920c3 100644 --- a/sdk/containerservice/arm-containerservice-rest/package.json +++ b/sdk/containerservice/arm-containerservice-rest/package.json @@ -42,11 +42,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -78,9 +78,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/javascript/README.md b/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/javascript/README.md index a50f72c87932..54e5ef3cfa92 100644 --- a/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/javascript/README.md +++ b/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/javascript/README.md @@ -57,7 +57,7 @@ node managedClustersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node managedClustersCreateOrUpdateSample.js +cross-env node managedClustersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/typescript/README.md b/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/typescript/README.md index c5914ac96ff9..017486d14c15 100644 --- a/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/typescript/README.md +++ b/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/typescript/README.md @@ -69,7 +69,7 @@ node dist/managedClustersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/managedClustersCreateOrUpdateSample.js +cross-env node dist/managedClustersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservice/package.json b/sdk/containerservice/arm-containerservice/package.json index 943e643bf1cb..341d8076ffcc 100644 --- a/sdk/containerservice/arm-containerservice/package.json +++ b/sdk/containerservice/arm-containerservice/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,18 +30,22 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -55,19 +59,19 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", + "extract-api": "dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", - "test:node:esm": "dev-tool run test:vitest --esm" + "test:node": "dev-tool run test:vitest", + "test:node:esm": "dev-tool run test:vitest --esm", + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/containerservice/arm-containerservice/samples/v23-beta/javascript/README.md b/sdk/containerservice/arm-containerservice/samples/v23-beta/javascript/README.md index f089f6cf0185..9d29361f6f7f 100644 --- a/sdk/containerservice/arm-containerservice/samples/v23-beta/javascript/README.md +++ b/sdk/containerservice/arm-containerservice/samples/v23-beta/javascript/README.md @@ -130,7 +130,7 @@ node agentPoolsAbortLatestOperationSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERSERVICE_SUBSCRIPTION_ID="" CONTAINERSERVICE_RESOURCE_GROUP="" node agentPoolsAbortLatestOperationSample.js +cross-env CONTAINERSERVICE_SUBSCRIPTION_ID="" CONTAINERSERVICE_RESOURCE_GROUP="" node agentPoolsAbortLatestOperationSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservice/samples/v23-beta/typescript/README.md b/sdk/containerservice/arm-containerservice/samples/v23-beta/typescript/README.md index b69b18198caa..8697690c727d 100644 --- a/sdk/containerservice/arm-containerservice/samples/v23-beta/typescript/README.md +++ b/sdk/containerservice/arm-containerservice/samples/v23-beta/typescript/README.md @@ -142,7 +142,7 @@ node dist/agentPoolsAbortLatestOperationSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERSERVICE_SUBSCRIPTION_ID="" CONTAINERSERVICE_RESOURCE_GROUP="" node dist/agentPoolsAbortLatestOperationSample.js +cross-env CONTAINERSERVICE_SUBSCRIPTION_ID="" CONTAINERSERVICE_RESOURCE_GROUP="" node dist/agentPoolsAbortLatestOperationSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservicefleet/package.json b/sdk/containerservice/arm-containerservicefleet/package.json index 5c8d9b787304..f36933ce228b 100644 --- a/sdk/containerservice/arm-containerservicefleet/package.json +++ b/sdk/containerservice/arm-containerservicefleet/package.json @@ -68,12 +68,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -87,20 +87,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/javascript/README.md b/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/javascript/README.md index 9cde4f3b9483..00c2573d4775 100644 --- a/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/javascript/README.md +++ b/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/javascript/README.md @@ -68,7 +68,7 @@ node autoUpgradeProfileOperationsGenerateUpdateRunSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node autoUpgradeProfileOperationsGenerateUpdateRunSample.js +cross-env node autoUpgradeProfileOperationsGenerateUpdateRunSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/typescript/README.md b/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/typescript/README.md index e7df80cec501..54bee66f3edc 100644 --- a/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/typescript/README.md +++ b/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/typescript/README.md @@ -80,7 +80,7 @@ node dist/autoUpgradeProfileOperationsGenerateUpdateRunSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/autoUpgradeProfileOperationsGenerateUpdateRunSample.js +cross-env node dist/autoUpgradeProfileOperationsGenerateUpdateRunSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservicesafeguards/package.json b/sdk/containerservice/arm-containerservicesafeguards/package.json index 2526bcaf2bad..86fe2ec11cfa 100644 --- a/sdk/containerservice/arm-containerservicesafeguards/package.json +++ b/sdk/containerservice/arm-containerservicesafeguards/package.json @@ -62,12 +62,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -79,30 +79,34 @@ "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/identity": "^4.9.0", "@types/node": "^20.0.0", - "eslint": "^9.9.0", "@vitest/browser": "^3.0.9", "@vitest/coverage-istanbul": "^3.0.9", + "cross-env": "catalog:", "dotenv": "^16.0.0", + "eslint": "^9.9.0", "playwright": "^1.52.0", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "~5.8.2", "vitest": "^3.0.9" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/javascript/README.md b/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/javascript/README.md index 03707c674367..e5334600aeba 100644 --- a/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/javascript/README.md +++ b/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/javascript/README.md @@ -41,7 +41,7 @@ node deploymentSafeguardsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node deploymentSafeguardsCreateSample.js +cross-env node deploymentSafeguardsCreateSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/typescript/README.md b/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/typescript/README.md index 1c73f78bf34e..e65d6aae969f 100644 --- a/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/typescript/README.md +++ b/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/typescript/README.md @@ -53,7 +53,7 @@ node dist/deploymentSafeguardsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/deploymentSafeguardsCreateSample.js +cross-env node dist/deploymentSafeguardsCreateSample.js ``` ## Next Steps diff --git a/sdk/contentsafety/ai-content-safety-rest/package.json b/sdk/contentsafety/ai-content-safety-rest/package.json index 6016d13361d1..fa1fbd63e052 100644 --- a/sdk/contentsafety/ai-content-safety-rest/package.json +++ b/sdk/contentsafety/ai-content-safety-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,10 +69,14 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "rollup-plugin-copy": "^3.5.0", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/contentsafety/ai-content-safety-rest/samples/v1/javascript/README.md b/sdk/contentsafety/ai-content-safety-rest/samples/v1/javascript/README.md index 198bf70ff927..277aaf615a37 100644 --- a/sdk/contentsafety/ai-content-safety-rest/samples/v1/javascript/README.md +++ b/sdk/contentsafety/ai-content-safety-rest/samples/v1/javascript/README.md @@ -39,7 +39,7 @@ node sampleAnalyzeImage.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTENT_SAFETY_ENDPOINT="" CONTENT_SAFETY_API_KEY="" node sampleAnalyzeImage.js +cross-env CONTENT_SAFETY_ENDPOINT="" CONTENT_SAFETY_API_KEY="" node sampleAnalyzeImage.js ``` ## Next Steps diff --git a/sdk/contentsafety/ai-content-safety-rest/samples/v1/typescript/README.md b/sdk/contentsafety/ai-content-safety-rest/samples/v1/typescript/README.md index cf453ab0437b..a1775a3b74d8 100644 --- a/sdk/contentsafety/ai-content-safety-rest/samples/v1/typescript/README.md +++ b/sdk/contentsafety/ai-content-safety-rest/samples/v1/typescript/README.md @@ -51,7 +51,7 @@ node dist/sampleAnalyzeImage.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTENT_SAFETY_ENDPOINT="" CONTENT_SAFETY_API_KEY="" node dist/sampleAnalyzeImage.js +cross-env CONTENT_SAFETY_ENDPOINT="" CONTENT_SAFETY_API_KEY="" node dist/sampleAnalyzeImage.js ``` ## Next Steps diff --git a/sdk/core/abort-controller/package.json b/sdk/core/abort-controller/package.json index f9230d58e107..2c48e6297f29 100644 --- a/sdk/core/abort-controller/package.json +++ b/sdk/core/abort-controller/package.json @@ -82,8 +82,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-amqp/package.json b/sdk/core/core-amqp/package.json index bc62fd5b4579..12d8fa5b1594 100644 --- a/sdk/core/core-amqp/package.json +++ b/sdk/core/core-amqp/package.json @@ -90,9 +90,12 @@ "@types/ws": "^8.5.10", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "debug": "^4.3.4", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing", diff --git a/sdk/core/core-auth/package.json b/sdk/core/core-auth/package.json index 2145e7594d50..62152a80fd72 100644 --- a/sdk/core/core-auth/package.json +++ b/sdk/core/core-auth/package.json @@ -78,8 +78,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-client-rest/package.json b/sdk/core/core-client-rest/package.json index c61f06397dfa..80bea24a2933 100644 --- a/sdk/core/core-client-rest/package.json +++ b/sdk/core/core-client-rest/package.json @@ -81,8 +81,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-client/package.json b/sdk/core/core-client/package.json index a0844e081ce6..d12ff9496b4e 100644 --- a/sdk/core/core-client/package.json +++ b/sdk/core/core-client/package.json @@ -83,8 +83,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-http-compat/package.json b/sdk/core/core-http-compat/package.json index 2b9fc2074d32..5e7586520606 100644 --- a/sdk/core/core-http-compat/package.json +++ b/sdk/core/core-http-compat/package.json @@ -78,8 +78,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-lro/package.json b/sdk/core/core-lro/package.json index 3cb64f663ecf..d95c342ad753 100644 --- a/sdk/core/core-lro/package.json +++ b/sdk/core/core-lro/package.json @@ -97,8 +97,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-lro/samples/v3/javascript/README.md b/sdk/core/core-lro/samples/v3/javascript/README.md index 805889610d71..a180d7b70005 100644 --- a/sdk/core/core-lro/samples/v3/javascript/README.md +++ b/sdk/core/core-lro/samples/v3/javascript/README.md @@ -37,7 +37,7 @@ node customPoller.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node customPoller.js +cross-env node customPoller.js ``` ## Next Steps diff --git a/sdk/core/core-lro/samples/v3/typescript/README.md b/sdk/core/core-lro/samples/v3/typescript/README.md index ded6a8424fe0..05ab1c8eb6cb 100644 --- a/sdk/core/core-lro/samples/v3/typescript/README.md +++ b/sdk/core/core-lro/samples/v3/typescript/README.md @@ -49,7 +49,7 @@ node dist/customPoller.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/customPoller.js +cross-env node dist/customPoller.js ``` ## Next Steps diff --git a/sdk/core/core-paging/package.json b/sdk/core/core-paging/package.json index 6ef52800b698..e880cf423f73 100644 --- a/sdk/core/core-paging/package.json +++ b/sdk/core/core-paging/package.json @@ -82,8 +82,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-paging/samples/v1/javascript/README.md b/sdk/core/core-paging/samples/v1/javascript/README.md index b27ee1b53533..86611aa77855 100644 --- a/sdk/core/core-paging/samples/v1/javascript/README.md +++ b/sdk/core/core-paging/samples/v1/javascript/README.md @@ -37,7 +37,7 @@ node getPagedAsyncIteratorSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node getPagedAsyncIteratorSample.js +cross-env node getPagedAsyncIteratorSample.js ``` ## Next Steps diff --git a/sdk/core/core-paging/samples/v1/typescript/README.md b/sdk/core/core-paging/samples/v1/typescript/README.md index 6a55818255d7..7d380790f681 100644 --- a/sdk/core/core-paging/samples/v1/typescript/README.md +++ b/sdk/core/core-paging/samples/v1/typescript/README.md @@ -49,7 +49,7 @@ node dist/getPagedAsyncIteratorSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/getPagedAsyncIteratorSample.js +cross-env node dist/getPagedAsyncIteratorSample.js ``` ## Next Steps diff --git a/sdk/core/core-rest-pipeline-perf-tests/package.json b/sdk/core/core-rest-pipeline-perf-tests/package.json index 75f2223267a7..7c00f5fce453 100644 --- a/sdk/core/core-rest-pipeline-perf-tests/package.json +++ b/sdk/core/core-rest-pipeline-perf-tests/package.json @@ -56,8 +56,11 @@ "@types/express": "^5.0.3", "@types/node": "catalog:", "concurrently": "^9.2.1", + "cross-env": "catalog:", "eslint": "catalog:", "express": "^5.1.0", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:" }, diff --git a/sdk/core/core-rest-pipeline/package.json b/sdk/core/core-rest-pipeline/package.json index cf464ebc27a1..a69eef8d60ec 100644 --- a/sdk/core/core-rest-pipeline/package.json +++ b/sdk/core/core-rest-pipeline/package.json @@ -100,8 +100,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-rest-pipeline/samples/v1/javascript/README.md b/sdk/core/core-rest-pipeline/samples/v1/javascript/README.md index c2020d69427f..f380780a1366 100644 --- a/sdk/core/core-rest-pipeline/samples/v1/javascript/README.md +++ b/sdk/core/core-rest-pipeline/samples/v1/javascript/README.md @@ -37,7 +37,7 @@ node node-sample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node node-sample.js +cross-env node node-sample.js ``` ## Next Steps diff --git a/sdk/core/core-rest-pipeline/samples/v1/typescript/README.md b/sdk/core/core-rest-pipeline/samples/v1/typescript/README.md index ebb1b676e571..cea2971ad222 100644 --- a/sdk/core/core-rest-pipeline/samples/v1/typescript/README.md +++ b/sdk/core/core-rest-pipeline/samples/v1/typescript/README.md @@ -49,7 +49,7 @@ node dist/node-sample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/node-sample.js +cross-env node dist/node-sample.js ``` ## Next Steps diff --git a/sdk/core/core-sse/package.json b/sdk/core/core-sse/package.json index 84b613524025..e9c9b8e845ee 100644 --- a/sdk/core/core-sse/package.json +++ b/sdk/core/core-sse/package.json @@ -85,10 +85,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "express": "^5.1.0", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "tsx": "catalog:", "typescript": "catalog:", diff --git a/sdk/core/core-sse/samples/v1/javascript/README.md b/sdk/core/core-sse/samples/v1/javascript/README.md index 2fcf9eb15bf2..a87be38bdc63 100644 --- a/sdk/core/core-sse/samples/v1/javascript/README.md +++ b/sdk/core/core-sse/samples/v1/javascript/README.md @@ -37,7 +37,7 @@ node iterateSseStream.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node iterateSseStream.js +cross-env node iterateSseStream.js ``` ## Next Steps diff --git a/sdk/core/core-sse/samples/v1/typescript/README.md b/sdk/core/core-sse/samples/v1/typescript/README.md index 9f9a508a17ff..2fa547dfa279 100644 --- a/sdk/core/core-sse/samples/v1/typescript/README.md +++ b/sdk/core/core-sse/samples/v1/typescript/README.md @@ -49,7 +49,7 @@ node dist/iterateSseStream.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/iterateSseStream.js +cross-env node dist/iterateSseStream.js ``` ## Next Steps diff --git a/sdk/core/core-sse/samples/v2/javascript/README.md b/sdk/core/core-sse/samples/v2/javascript/README.md index c37abc54928a..ef1fa570a185 100644 --- a/sdk/core/core-sse/samples/v2/javascript/README.md +++ b/sdk/core/core-sse/samples/v2/javascript/README.md @@ -37,7 +37,7 @@ node createSseStream.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node createSseStream.js +cross-env node createSseStream.js ``` ## Next Steps diff --git a/sdk/core/core-sse/samples/v2/typescript/README.md b/sdk/core/core-sse/samples/v2/typescript/README.md index b8afae3c55a6..f06dbc372ffe 100644 --- a/sdk/core/core-sse/samples/v2/typescript/README.md +++ b/sdk/core/core-sse/samples/v2/typescript/README.md @@ -49,7 +49,7 @@ node dist/createSseStream.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/createSseStream.js +cross-env node dist/createSseStream.js ``` ## Next Steps diff --git a/sdk/core/core-tracing/package.json b/sdk/core/core-tracing/package.json index 2a22d7eb698f..12511c458458 100644 --- a/sdk/core/core-tracing/package.json +++ b/sdk/core/core-tracing/package.json @@ -77,8 +77,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-tracing/samples/v1/javascript/README.md b/sdk/core/core-tracing/samples/v1/javascript/README.md index 3b99a61eeb1f..f7cef88c1324 100644 --- a/sdk/core/core-tracing/samples/v1/javascript/README.md +++ b/sdk/core/core-tracing/samples/v1/javascript/README.md @@ -37,7 +37,7 @@ node basicTracing.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node basicTracing.js +cross-env node basicTracing.js ``` ## Next Steps diff --git a/sdk/core/core-tracing/samples/v1/typescript/README.md b/sdk/core/core-tracing/samples/v1/typescript/README.md index 6d34e4db05d4..6a1417dc34cf 100644 --- a/sdk/core/core-tracing/samples/v1/typescript/README.md +++ b/sdk/core/core-tracing/samples/v1/typescript/README.md @@ -49,7 +49,7 @@ node dist/basicTracing.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/basicTracing.js +cross-env node dist/basicTracing.js ``` ## Next Steps diff --git a/sdk/core/core-util/package.json b/sdk/core/core-util/package.json index b7b74bef1ded..f62cb9135f14 100644 --- a/sdk/core/core-util/package.json +++ b/sdk/core/core-util/package.json @@ -79,8 +79,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-xml/package.json b/sdk/core/core-xml/package.json index f20d951cb782..a9f4f4afbef7 100644 --- a/sdk/core/core-xml/package.json +++ b/sdk/core/core-xml/package.json @@ -78,8 +78,11 @@ "@types/trusted-types": "^2.0.0", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/logger/package.json b/sdk/core/logger/package.json index 419730c4189a..70b7e715ad21 100644 --- a/sdk/core/logger/package.json +++ b/sdk/core/logger/package.json @@ -83,9 +83,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/ts-http-runtime/package.json b/sdk/core/ts-http-runtime/package.json index 994b75b13be6..87ea934e6988 100644 --- a/sdk/core/ts-http-runtime/package.json +++ b/sdk/core/ts-http-runtime/package.json @@ -150,8 +150,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "tsx": "catalog:", "typescript": "catalog:", diff --git a/sdk/cosmosdb/arm-cosmosdb/package.json b/sdk/cosmosdb/arm-cosmosdb/package.json index 2c4853228450..fdfd29c7564b 100644 --- a/sdk/cosmosdb/arm-cosmosdb/package.json +++ b/sdk/cosmosdb/arm-cosmosdb/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/cosmosdb/arm-cosmosdb/samples/v16/javascript/README.md b/sdk/cosmosdb/arm-cosmosdb/samples/v16/javascript/README.md index da751f2d77fd..ed6381326cf0 100644 --- a/sdk/cosmosdb/arm-cosmosdb/samples/v16/javascript/README.md +++ b/sdk/cosmosdb/arm-cosmosdb/samples/v16/javascript/README.md @@ -226,7 +226,7 @@ node cassandraClustersCreateUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSDB_SUBSCRIPTION_ID="" COSMOSDB_RESOURCE_GROUP="" node cassandraClustersCreateUpdateSample.js +cross-env COSMOSDB_SUBSCRIPTION_ID="" COSMOSDB_RESOURCE_GROUP="" node cassandraClustersCreateUpdateSample.js ``` ## Next Steps diff --git a/sdk/cosmosdb/arm-cosmosdb/samples/v16/typescript/README.md b/sdk/cosmosdb/arm-cosmosdb/samples/v16/typescript/README.md index df974b32eb9a..7db321af91e6 100644 --- a/sdk/cosmosdb/arm-cosmosdb/samples/v16/typescript/README.md +++ b/sdk/cosmosdb/arm-cosmosdb/samples/v16/typescript/README.md @@ -238,7 +238,7 @@ node dist/cassandraClustersCreateUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSDB_SUBSCRIPTION_ID="" COSMOSDB_RESOURCE_GROUP="" node dist/cassandraClustersCreateUpdateSample.js +cross-env COSMOSDB_SUBSCRIPTION_ID="" COSMOSDB_RESOURCE_GROUP="" node dist/cassandraClustersCreateUpdateSample.js ``` ## Next Steps diff --git a/sdk/cosmosdb/cosmos/package.json b/sdk/cosmosdb/cosmos/package.json index 0939dea48152..1aa837e3d6ce 100644 --- a/sdk/cosmosdb/cosmos/package.json +++ b/sdk/cosmosdb/cosmos/package.json @@ -41,19 +41,19 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm temp types *.tgz *.html *.log *.tsbuildinfo test/**/*.{js,js.map,d.ts}", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm temp types *.tgz *.html *.log *.tsbuildinfo test/**/*.{js,js.map,d.ts}", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "npm run build && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint package.json src test", - "lint:fix": "dev-tool run vendored eslint package.json src test --fix --fix-type [problem,suggestion]", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", "test:browser": "echo skipped", "test:node": "npm run test:node:unit", - "test:node:integration": "dev-tool run vendored cross-env NODE_OPTIONS='--dns-result-order=ipv4first' dev-tool run test:vitest --no-test-proxy -- -c vitest.int.config.ts", - "test:node:unit": "dev-tool run vendored cross-env NODE_OPTIONS='--dns-result-order=ipv4first' dev-tool run test:vitest --no-test-proxy -- -c vitest.unit.config.ts", + "test:node:integration": "cross-env NODE_OPTIONS='--dns-result-order=ipv4first' dev-tool run test:vitest --no-test-proxy -- -c vitest.int.config.ts", + "test:node:unit": "cross-env NODE_OPTIONS='--dns-result-order=ipv4first' dev-tool run test:vitest --no-test-proxy -- -c vitest.unit.config.ts", "update-snippets": "dev-tool run update-snippets" }, "repository": "github:Azure/azure-sdk-for-js", @@ -89,10 +89,14 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "assertion-error": "^2.0.1", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "nock": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/cosmosdb/cosmos/samples/v3/javascript/README.md b/sdk/cosmosdb/cosmos/samples/v3/javascript/README.md index 84e9d3acd308..f9b4c3c36017 100644 --- a/sdk/cosmosdb/cosmos/samples/v3/javascript/README.md +++ b/sdk/cosmosdb/cosmos/samples/v3/javascript/README.md @@ -59,7 +59,7 @@ node EntraAuth.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_CONTAINER="" node EntraAuth.js +cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_CONTAINER="" node EntraAuth.js ``` ## Next Steps diff --git a/sdk/cosmosdb/cosmos/samples/v3/typescript/README.md b/sdk/cosmosdb/cosmos/samples/v3/typescript/README.md index 1700e62e07ec..d541837971f0 100644 --- a/sdk/cosmosdb/cosmos/samples/v3/typescript/README.md +++ b/sdk/cosmosdb/cosmos/samples/v3/typescript/README.md @@ -71,7 +71,7 @@ node dist/EntraAuth.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_CONTAINER="" node dist/EntraAuth.js +cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_CONTAINER="" node dist/EntraAuth.js ``` ## Next Steps diff --git a/sdk/cosmosdb/cosmos/samples/v4/javascript/README.md b/sdk/cosmosdb/cosmos/samples/v4/javascript/README.md index 416457eab3d3..59a27213efcd 100644 --- a/sdk/cosmosdb/cosmos/samples/v4/javascript/README.md +++ b/sdk/cosmosdb/cosmos/samples/v4/javascript/README.md @@ -68,7 +68,7 @@ node AlterQueryThroughput.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_DATABASE="" COSMOS_CONTAINER="" node AlterQueryThroughput.js +cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_DATABASE="" COSMOS_CONTAINER="" node AlterQueryThroughput.js ``` ## Next Steps diff --git a/sdk/cosmosdb/cosmos/samples/v4/typescript/README.md b/sdk/cosmosdb/cosmos/samples/v4/typescript/README.md index 8a5a79c40090..26f8afc65fd6 100644 --- a/sdk/cosmosdb/cosmos/samples/v4/typescript/README.md +++ b/sdk/cosmosdb/cosmos/samples/v4/typescript/README.md @@ -80,7 +80,7 @@ node dist/AlterQueryThroughput.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_DATABASE="" COSMOS_CONTAINER="" node dist/AlterQueryThroughput.js +cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_DATABASE="" COSMOS_CONTAINER="" node dist/AlterQueryThroughput.js ``` ## Next Steps diff --git a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/package.json b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/package.json index ad9b9068cfcb..f1aef809ff4a 100644 --- a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/package.json +++ b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/javascript/README.md b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/javascript/README.md index 452e0df4eee8..c26ff6b12c63 100644 --- a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/javascript/README.md +++ b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/javascript/README.md @@ -71,7 +71,7 @@ node clustersCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node clustersCheckNameAvailabilitySample.js +cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node clustersCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/typescript/README.md b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/typescript/README.md index a6e44ddef933..d5586d82d3f2 100644 --- a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/typescript/README.md +++ b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/typescript/README.md @@ -83,7 +83,7 @@ node dist/clustersCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node dist/clustersCheckNameAvailabilitySample.js +cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node dist/clustersCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/javascript/README.md b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/javascript/README.md index 4aa84ee65820..43291c5508c4 100644 --- a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/javascript/README.md +++ b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/javascript/README.md @@ -71,7 +71,7 @@ node clustersCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node clustersCheckNameAvailabilitySample.js +cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node clustersCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/typescript/README.md b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/typescript/README.md index 8414289a2ee3..b84bcd221788 100644 --- a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/typescript/README.md +++ b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/typescript/README.md @@ -83,7 +83,7 @@ node dist/clustersCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node dist/clustersCheckNameAvailabilitySample.js +cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node dist/clustersCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/cost-management/arm-costmanagement/package.json b/sdk/cost-management/arm-costmanagement/package.json index edc815d9be9c..944f980048b5 100644 --- a/sdk/cost-management/arm-costmanagement/package.json +++ b/sdk/cost-management/arm-costmanagement/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/cost-management/arm-costmanagement/samples/v1-beta/javascript/README.md b/sdk/cost-management/arm-costmanagement/samples/v1-beta/javascript/README.md index 9af45820ba96..1da6540a6006 100644 --- a/sdk/cost-management/arm-costmanagement/samples/v1-beta/javascript/README.md +++ b/sdk/cost-management/arm-costmanagement/samples/v1-beta/javascript/README.md @@ -87,7 +87,7 @@ node alertsDismissSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node alertsDismissSample.js +cross-env node alertsDismissSample.js ``` ## Next Steps diff --git a/sdk/cost-management/arm-costmanagement/samples/v1-beta/typescript/README.md b/sdk/cost-management/arm-costmanagement/samples/v1-beta/typescript/README.md index 0bf66fb0c96c..27c70735a36e 100644 --- a/sdk/cost-management/arm-costmanagement/samples/v1-beta/typescript/README.md +++ b/sdk/cost-management/arm-costmanagement/samples/v1-beta/typescript/README.md @@ -99,7 +99,7 @@ node dist/alertsDismissSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/alertsDismissSample.js +cross-env node dist/alertsDismissSample.js ``` ## Next Steps diff --git a/sdk/customer-insights/arm-customerinsights/package.json b/sdk/customer-insights/arm-customerinsights/package.json index c072351e4db4..5d7dc9faf597 100644 --- a/sdk/customer-insights/arm-customerinsights/package.json +++ b/sdk/customer-insights/arm-customerinsights/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/customer-insights/arm-customerinsights/samples/v4/javascript/README.md b/sdk/customer-insights/arm-customerinsights/samples/v4/javascript/README.md index 4cb616cddc4f..156d01241700 100644 --- a/sdk/customer-insights/arm-customerinsights/samples/v4/javascript/README.md +++ b/sdk/customer-insights/arm-customerinsights/samples/v4/javascript/README.md @@ -102,7 +102,7 @@ node authorizationPoliciesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node authorizationPoliciesCreateOrUpdateSample.js +cross-env node authorizationPoliciesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/customer-insights/arm-customerinsights/samples/v4/typescript/README.md b/sdk/customer-insights/arm-customerinsights/samples/v4/typescript/README.md index 5265658dd3a0..91b5b152c340 100644 --- a/sdk/customer-insights/arm-customerinsights/samples/v4/typescript/README.md +++ b/sdk/customer-insights/arm-customerinsights/samples/v4/typescript/README.md @@ -114,7 +114,7 @@ node dist/authorizationPoliciesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/authorizationPoliciesCreateOrUpdateSample.js +cross-env node dist/authorizationPoliciesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dashboard/arm-dashboard/package.json b/sdk/dashboard/arm-dashboard/package.json index 3ab28c5f724d..8034f7e8a9aa 100644 --- a/sdk/dashboard/arm-dashboard/package.json +++ b/sdk/dashboard/arm-dashboard/package.json @@ -67,12 +67,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -84,29 +84,33 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/dashboard/arm-dashboard/samples/v2-beta/javascript/README.md b/sdk/dashboard/arm-dashboard/samples/v2-beta/javascript/README.md index 794a1e93003a..e865dd04c064 100644 --- a/sdk/dashboard/arm-dashboard/samples/v2-beta/javascript/README.md +++ b/sdk/dashboard/arm-dashboard/samples/v2-beta/javascript/README.md @@ -68,7 +68,7 @@ node grafanaCheckEnterpriseDetailsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node grafanaCheckEnterpriseDetailsSample.js +cross-env node grafanaCheckEnterpriseDetailsSample.js ``` ## Next Steps diff --git a/sdk/dashboard/arm-dashboard/samples/v2-beta/typescript/README.md b/sdk/dashboard/arm-dashboard/samples/v2-beta/typescript/README.md index c451dfcff431..d2503f9b63bc 100644 --- a/sdk/dashboard/arm-dashboard/samples/v2-beta/typescript/README.md +++ b/sdk/dashboard/arm-dashboard/samples/v2-beta/typescript/README.md @@ -80,7 +80,7 @@ node dist/grafanaCheckEnterpriseDetailsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/grafanaCheckEnterpriseDetailsSample.js +cross-env node dist/grafanaCheckEnterpriseDetailsSample.js ``` ## Next Steps diff --git a/sdk/databasewatcher/arm-databasewatcher/package.json b/sdk/databasewatcher/arm-databasewatcher/package.json index bf6e8d430d57..bef437e2eac1 100644 --- a/sdk/databasewatcher/arm-databasewatcher/package.json +++ b/sdk/databasewatcher/arm-databasewatcher/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/javascript/README.md b/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/javascript/README.md index d8e1ebe8c54f..f312ff3e5bdc 100644 --- a/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/javascript/README.md +++ b/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/javascript/README.md @@ -60,7 +60,7 @@ node alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js +cross-env node alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/typescript/README.md b/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/typescript/README.md index cea66969f4dc..61cad366057e 100644 --- a/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/typescript/README.md +++ b/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/typescript/README.md @@ -72,7 +72,7 @@ node dist/alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js +cross-env node dist/alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/databoundaries/arm-databoundaries/package.json b/sdk/databoundaries/arm-databoundaries/package.json index 5722a9abed05..916742bd5982 100644 --- a/sdk/databoundaries/arm-databoundaries/package.json +++ b/sdk/databoundaries/arm-databoundaries/package.json @@ -35,8 +35,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,7 +58,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/databoundaries/arm-databoundaries/samples/v1-beta/javascript/README.md b/sdk/databoundaries/arm-databoundaries/samples/v1-beta/javascript/README.md index 5e76ff2a9fca..dfc1f40761dc 100644 --- a/sdk/databoundaries/arm-databoundaries/samples/v1-beta/javascript/README.md +++ b/sdk/databoundaries/arm-databoundaries/samples/v1-beta/javascript/README.md @@ -39,7 +39,7 @@ node dataBoundariesGetScopeSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dataBoundariesGetScopeSample.js +cross-env node dataBoundariesGetScopeSample.js ``` ## Next Steps diff --git a/sdk/databoundaries/arm-databoundaries/samples/v1-beta/typescript/README.md b/sdk/databoundaries/arm-databoundaries/samples/v1-beta/typescript/README.md index ce3a4fe3fbb4..3f68a1655480 100644 --- a/sdk/databoundaries/arm-databoundaries/samples/v1-beta/typescript/README.md +++ b/sdk/databoundaries/arm-databoundaries/samples/v1-beta/typescript/README.md @@ -51,7 +51,7 @@ node dist/dataBoundariesGetScopeSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/dataBoundariesGetScopeSample.js +cross-env node dist/dataBoundariesGetScopeSample.js ``` ## Next Steps diff --git a/sdk/databox/arm-databox/package.json b/sdk/databox/arm-databox/package.json index 8c830023d3f6..aedccdad83e5 100644 --- a/sdk/databox/arm-databox/package.json +++ b/sdk/databox/arm-databox/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/databox/arm-databox/samples/v5/javascript/README.md b/sdk/databox/arm-databox/samples/v5/javascript/README.md index 1555919d33c1..63dbf7adea17 100644 --- a/sdk/databox/arm-databox/samples/v5/javascript/README.md +++ b/sdk/databox/arm-databox/samples/v5/javascript/README.md @@ -54,7 +54,7 @@ node jobsBookShipmentPickUpSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABOX_SUBSCRIPTION_ID="" DATABOX_RESOURCE_GROUP="" node jobsBookShipmentPickUpSample.js +cross-env DATABOX_SUBSCRIPTION_ID="" DATABOX_RESOURCE_GROUP="" node jobsBookShipmentPickUpSample.js ``` ## Next Steps diff --git a/sdk/databox/arm-databox/samples/v5/typescript/README.md b/sdk/databox/arm-databox/samples/v5/typescript/README.md index c1163fad3707..43b2c61ceab2 100644 --- a/sdk/databox/arm-databox/samples/v5/typescript/README.md +++ b/sdk/databox/arm-databox/samples/v5/typescript/README.md @@ -66,7 +66,7 @@ node dist/jobsBookShipmentPickUpSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABOX_SUBSCRIPTION_ID="" DATABOX_RESOURCE_GROUP="" node dist/jobsBookShipmentPickUpSample.js +cross-env DATABOX_SUBSCRIPTION_ID="" DATABOX_RESOURCE_GROUP="" node dist/jobsBookShipmentPickUpSample.js ``` ## Next Steps diff --git a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/package.json b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/package.json index e227a34b1b4c..1f49252319ca 100644 --- a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/package.json +++ b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 15a07a4ef55c..8f3afec3e045 100644 --- a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -95,7 +95,7 @@ node alertsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABOXEDGE_SUBSCRIPTION_ID="" DATABOXEDGE_RESOURCE_GROUP="" node alertsGetSample.js +cross-env DATABOXEDGE_SUBSCRIPTION_ID="" DATABOXEDGE_RESOURCE_GROUP="" node alertsGetSample.js ``` ## Next Steps diff --git a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index f0ea15ea93eb..cc26b2e5fbc2 100644 --- a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -107,7 +107,7 @@ node dist/alertsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABOXEDGE_SUBSCRIPTION_ID="" DATABOXEDGE_RESOURCE_GROUP="" node dist/alertsGetSample.js +cross-env DATABOXEDGE_SUBSCRIPTION_ID="" DATABOXEDGE_RESOURCE_GROUP="" node dist/alertsGetSample.js ``` ## Next Steps diff --git a/sdk/databoxedge/arm-databoxedge/package.json b/sdk/databoxedge/arm-databoxedge/package.json index 746569fc3727..561f4d6e8a57 100644 --- a/sdk/databoxedge/arm-databoxedge/package.json +++ b/sdk/databoxedge/arm-databoxedge/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/databoxedge/arm-databoxedge/samples/v2/javascript/README.md b/sdk/databoxedge/arm-databoxedge/samples/v2/javascript/README.md index c47e5351bbeb..6c1cfac7832d 100644 --- a/sdk/databoxedge/arm-databoxedge/samples/v2/javascript/README.md +++ b/sdk/databoxedge/arm-databoxedge/samples/v2/javascript/README.md @@ -111,7 +111,7 @@ node addonsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node addonsCreateOrUpdateSample.js +cross-env node addonsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/databoxedge/arm-databoxedge/samples/v2/typescript/README.md b/sdk/databoxedge/arm-databoxedge/samples/v2/typescript/README.md index bd844fe33d3c..9c5806d51b25 100644 --- a/sdk/databoxedge/arm-databoxedge/samples/v2/typescript/README.md +++ b/sdk/databoxedge/arm-databoxedge/samples/v2/typescript/README.md @@ -123,7 +123,7 @@ node dist/addonsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/addonsCreateOrUpdateSample.js +cross-env node dist/addonsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/databricks/arm-databricks/package.json b/sdk/databricks/arm-databricks/package.json index c777b66ff255..2cef8448963f 100644 --- a/sdk/databricks/arm-databricks/package.json +++ b/sdk/databricks/arm-databricks/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/databricks/arm-databricks/samples/v3/javascript/README.md b/sdk/databricks/arm-databricks/samples/v3/javascript/README.md index 1670ae434207..cab765571ba2 100644 --- a/sdk/databricks/arm-databricks/samples/v3/javascript/README.md +++ b/sdk/databricks/arm-databricks/samples/v3/javascript/README.md @@ -60,7 +60,7 @@ node accessConnectorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABRICKS_SUBSCRIPTION_ID="" DATABRICKS_RESOURCE_GROUP="" node accessConnectorsCreateOrUpdateSample.js +cross-env DATABRICKS_SUBSCRIPTION_ID="" DATABRICKS_RESOURCE_GROUP="" node accessConnectorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/databricks/arm-databricks/samples/v3/typescript/README.md b/sdk/databricks/arm-databricks/samples/v3/typescript/README.md index f09acd9db1dd..fd9f9ca76b99 100644 --- a/sdk/databricks/arm-databricks/samples/v3/typescript/README.md +++ b/sdk/databricks/arm-databricks/samples/v3/typescript/README.md @@ -72,7 +72,7 @@ node dist/accessConnectorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABRICKS_SUBSCRIPTION_ID="" DATABRICKS_RESOURCE_GROUP="" node dist/accessConnectorsCreateOrUpdateSample.js +cross-env DATABRICKS_SUBSCRIPTION_ID="" DATABRICKS_RESOURCE_GROUP="" node dist/accessConnectorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/datacatalog/arm-datacatalog/package.json b/sdk/datacatalog/arm-datacatalog/package.json index 6e205683b87c..97e19d275f59 100644 --- a/sdk/datacatalog/arm-datacatalog/package.json +++ b/sdk/datacatalog/arm-datacatalog/package.json @@ -37,7 +37,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/datacatalog/arm-datacatalog/samples/v4/javascript/README.md b/sdk/datacatalog/arm-datacatalog/samples/v4/javascript/README.md index f402aec1441e..c2e730a489b7 100644 --- a/sdk/datacatalog/arm-datacatalog/samples/v4/javascript/README.md +++ b/sdk/datacatalog/arm-datacatalog/samples/v4/javascript/README.md @@ -42,7 +42,7 @@ node adcCatalogsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node adcCatalogsCreateOrUpdateSample.js +cross-env node adcCatalogsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/datacatalog/arm-datacatalog/samples/v4/typescript/README.md b/sdk/datacatalog/arm-datacatalog/samples/v4/typescript/README.md index 02adbdf88582..49396884fb76 100644 --- a/sdk/datacatalog/arm-datacatalog/samples/v4/typescript/README.md +++ b/sdk/datacatalog/arm-datacatalog/samples/v4/typescript/README.md @@ -54,7 +54,7 @@ node dist/adcCatalogsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/adcCatalogsCreateOrUpdateSample.js +cross-env node dist/adcCatalogsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/datadog/arm-datadog/package.json b/sdk/datadog/arm-datadog/package.json index 9948f1a71e09..9f26945cef5a 100644 --- a/sdk/datadog/arm-datadog/package.json +++ b/sdk/datadog/arm-datadog/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/README.md b/sdk/datadog/arm-datadog/samples/v3/javascript/README.md index 077879157bd1..ba39aea5eba6 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/README.md +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/README.md @@ -65,7 +65,7 @@ node creationSupportedGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATADOG_SUBSCRIPTION_ID="" node creationSupportedGetSample.js +cross-env DATADOG_SUBSCRIPTION_ID="" node creationSupportedGetSample.js ``` ## Next Steps diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/README.md b/sdk/datadog/arm-datadog/samples/v3/typescript/README.md index b9bd5542812c..453b5f4a085e 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/README.md +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/README.md @@ -77,7 +77,7 @@ node dist/creationSupportedGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATADOG_SUBSCRIPTION_ID="" node dist/creationSupportedGetSample.js +cross-env DATADOG_SUBSCRIPTION_ID="" node dist/creationSupportedGetSample.js ``` ## Next Steps diff --git a/sdk/datafactory/arm-datafactory/package.json b/sdk/datafactory/arm-datafactory/package.json index bb79af0b6ab0..9a3e2b25cb0a 100644 --- a/sdk/datafactory/arm-datafactory/package.json +++ b/sdk/datafactory/arm-datafactory/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/datafactory/arm-datafactory/samples/v19/javascript/README.md b/sdk/datafactory/arm-datafactory/samples/v19/javascript/README.md index cf83bbe14ba1..470143e0fd0a 100644 --- a/sdk/datafactory/arm-datafactory/samples/v19/javascript/README.md +++ b/sdk/datafactory/arm-datafactory/samples/v19/javascript/README.md @@ -138,7 +138,7 @@ node activityRunsQueryByPipelineRunSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATAFACTORY_SUBSCRIPTION_ID="" DATAFACTORY_RESOURCE_GROUP="" node activityRunsQueryByPipelineRunSample.js +cross-env DATAFACTORY_SUBSCRIPTION_ID="" DATAFACTORY_RESOURCE_GROUP="" node activityRunsQueryByPipelineRunSample.js ``` ## Next Steps diff --git a/sdk/datafactory/arm-datafactory/samples/v19/typescript/README.md b/sdk/datafactory/arm-datafactory/samples/v19/typescript/README.md index 8a49f86a40ea..3f7dd1df26bb 100644 --- a/sdk/datafactory/arm-datafactory/samples/v19/typescript/README.md +++ b/sdk/datafactory/arm-datafactory/samples/v19/typescript/README.md @@ -150,7 +150,7 @@ node dist/activityRunsQueryByPipelineRunSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATAFACTORY_SUBSCRIPTION_ID="" DATAFACTORY_RESOURCE_GROUP="" node dist/activityRunsQueryByPipelineRunSample.js +cross-env DATAFACTORY_SUBSCRIPTION_ID="" DATAFACTORY_RESOURCE_GROUP="" node dist/activityRunsQueryByPipelineRunSample.js ``` ## Next Steps diff --git a/sdk/datalake-analytics/arm-datalake-analytics/package.json b/sdk/datalake-analytics/arm-datalake-analytics/package.json index 04f2f3c39e19..c497786782d9 100644 --- a/sdk/datalake-analytics/arm-datalake-analytics/package.json +++ b/sdk/datalake-analytics/arm-datalake-analytics/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/javascript/README.md b/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/javascript/README.md index 233b69b9a5af..8ed7a06cf657 100644 --- a/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/javascript/README.md +++ b/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/javascript/README.md @@ -67,7 +67,7 @@ node accountsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node accountsCheckNameAvailabilitySample.js +cross-env node accountsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/typescript/README.md b/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/typescript/README.md index 505b28280175..07c5dc80b7d6 100644 --- a/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/typescript/README.md +++ b/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/typescript/README.md @@ -79,7 +79,7 @@ node dist/accountsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/accountsCheckNameAvailabilitySample.js +cross-env node dist/accountsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/datamigration/arm-datamigration/package.json b/sdk/datamigration/arm-datamigration/package.json index f5b1ca7640ae..a76d9a6464af 100644 --- a/sdk/datamigration/arm-datamigration/package.json +++ b/sdk/datamigration/arm-datamigration/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,18 +30,22 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -55,19 +59,19 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", + "extract-api": "dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", - "test:node:esm": "dev-tool run test:vitest --esm" + "test:node": "dev-tool run test:vitest", + "test:node:esm": "dev-tool run test:vitest --esm", + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/datamigration/arm-datamigration/samples/v3/javascript/README.md b/sdk/datamigration/arm-datamigration/samples/v3/javascript/README.md index dca53d8e10cd..99a1d31af939 100644 --- a/sdk/datamigration/arm-datamigration/samples/v3/javascript/README.md +++ b/sdk/datamigration/arm-datamigration/samples/v3/javascript/README.md @@ -163,7 +163,7 @@ node createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js +cross-env node createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js ``` ## Next Steps diff --git a/sdk/datamigration/arm-datamigration/samples/v3/typescript/README.md b/sdk/datamigration/arm-datamigration/samples/v3/typescript/README.md index c9ba56cd61dc..a007d207e4cb 100644 --- a/sdk/datamigration/arm-datamigration/samples/v3/typescript/README.md +++ b/sdk/datamigration/arm-datamigration/samples/v3/typescript/README.md @@ -175,7 +175,7 @@ node dist/createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js +cross-env node dist/createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js ``` ## Next Steps diff --git a/sdk/dataprotection/arm-dataprotection/package.json b/sdk/dataprotection/arm-dataprotection/package.json index 78e9c1942cd4..895c97982c11 100644 --- a/sdk/dataprotection/arm-dataprotection/package.json +++ b/sdk/dataprotection/arm-dataprotection/package.json @@ -82,12 +82,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -101,28 +101,32 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "rimraf review && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", + "extract-api": "rimraf review && dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/dataprotection/arm-dataprotection/samples/v4/javascript/README.md b/sdk/dataprotection/arm-dataprotection/samples/v4/javascript/README.md index 05160a5f8e23..5704e12f50ff 100644 --- a/sdk/dataprotection/arm-dataprotection/samples/v4/javascript/README.md +++ b/sdk/dataprotection/arm-dataprotection/samples/v4/javascript/README.md @@ -109,7 +109,7 @@ node backupInstancesAdhocBackupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node backupInstancesAdhocBackupSample.js +cross-env node backupInstancesAdhocBackupSample.js ``` ## Next Steps diff --git a/sdk/dataprotection/arm-dataprotection/samples/v4/typescript/README.md b/sdk/dataprotection/arm-dataprotection/samples/v4/typescript/README.md index 0e4cc2ca8b58..1e763424984b 100644 --- a/sdk/dataprotection/arm-dataprotection/samples/v4/typescript/README.md +++ b/sdk/dataprotection/arm-dataprotection/samples/v4/typescript/README.md @@ -121,7 +121,7 @@ node dist/backupInstancesAdhocBackupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/backupInstancesAdhocBackupSample.js +cross-env node dist/backupInstancesAdhocBackupSample.js ``` ## Next Steps diff --git a/sdk/defendereasm/arm-defendereasm/package.json b/sdk/defendereasm/arm-defendereasm/package.json index 209c9c70bda7..6d5307e8ca25 100644 --- a/sdk/defendereasm/arm-defendereasm/package.json +++ b/sdk/defendereasm/arm-defendereasm/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/defendereasm/arm-defendereasm/samples/v1-beta/javascript/README.md b/sdk/defendereasm/arm-defendereasm/samples/v1-beta/javascript/README.md index e8b5dd726869..afc671c3c1e2 100644 --- a/sdk/defendereasm/arm-defendereasm/samples/v1-beta/javascript/README.md +++ b/sdk/defendereasm/arm-defendereasm/samples/v1-beta/javascript/README.md @@ -49,7 +49,7 @@ node labelsCreateAndUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEFENDEREASM_SUBSCRIPTION_ID="" DEFENDEREASM_RESOURCE_GROUP="" node labelsCreateAndUpdateSample.js +cross-env DEFENDEREASM_SUBSCRIPTION_ID="" DEFENDEREASM_RESOURCE_GROUP="" node labelsCreateAndUpdateSample.js ``` ## Next Steps diff --git a/sdk/defendereasm/arm-defendereasm/samples/v1-beta/typescript/README.md b/sdk/defendereasm/arm-defendereasm/samples/v1-beta/typescript/README.md index 7e58ef75303b..4cdeeb319f9d 100644 --- a/sdk/defendereasm/arm-defendereasm/samples/v1-beta/typescript/README.md +++ b/sdk/defendereasm/arm-defendereasm/samples/v1-beta/typescript/README.md @@ -61,7 +61,7 @@ node dist/labelsCreateAndUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEFENDEREASM_SUBSCRIPTION_ID="" DEFENDEREASM_RESOURCE_GROUP="" node dist/labelsCreateAndUpdateSample.js +cross-env DEFENDEREASM_SUBSCRIPTION_ID="" DEFENDEREASM_RESOURCE_GROUP="" node dist/labelsCreateAndUpdateSample.js ``` ## Next Steps diff --git a/sdk/dell/arm-dell-storage/package.json b/sdk/dell/arm-dell-storage/package.json index ab998637a4fa..56e1ec0e6634 100644 --- a/sdk/dell/arm-dell-storage/package.json +++ b/sdk/dell/arm-dell-storage/package.json @@ -80,9 +80,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -90,11 +94,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "integration-test": "npm run integration-test:node && npm run integration-test:browser", "integration-test:browser": "echo skipped", diff --git a/sdk/dell/arm-dell-storage/samples/v1-beta/javascript/README.md b/sdk/dell/arm-dell-storage/samples/v1-beta/javascript/README.md index cb116a0d3c48..5e168ecb2987 100644 --- a/sdk/dell/arm-dell-storage/samples/v1-beta/javascript/README.md +++ b/sdk/dell/arm-dell-storage/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node fileSystemsCreateOrUpdateSample.js +cross-env node fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dell/arm-dell-storage/samples/v1-beta/typescript/README.md b/sdk/dell/arm-dell-storage/samples/v1-beta/typescript/README.md index eeb73407d7ae..11937603a879 100644 --- a/sdk/dell/arm-dell-storage/samples/v1-beta/typescript/README.md +++ b/sdk/dell/arm-dell-storage/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/fileSystemsCreateOrUpdateSample.js +cross-env node dist/fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dependencymap/arm-dependencymap/package.json b/sdk/dependencymap/arm-dependencymap/package.json index 872f529761fc..065cb0aa34f5 100644 --- a/sdk/dependencymap/arm-dependencymap/package.json +++ b/sdk/dependencymap/arm-dependencymap/package.json @@ -81,20 +81,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/dependencymap/arm-dependencymap/samples/v1-beta/javascript/README.md b/sdk/dependencymap/arm-dependencymap/samples/v1-beta/javascript/README.md index 7f51a126a845..17d59267c59a 100644 --- a/sdk/dependencymap/arm-dependencymap/samples/v1-beta/javascript/README.md +++ b/sdk/dependencymap/arm-dependencymap/samples/v1-beta/javascript/README.md @@ -52,7 +52,7 @@ node discoverySourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node discoverySourcesCreateOrUpdateSample.js +cross-env node discoverySourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dependencymap/arm-dependencymap/samples/v1-beta/typescript/README.md b/sdk/dependencymap/arm-dependencymap/samples/v1-beta/typescript/README.md index ee03f5437637..8c0d716463a4 100644 --- a/sdk/dependencymap/arm-dependencymap/samples/v1-beta/typescript/README.md +++ b/sdk/dependencymap/arm-dependencymap/samples/v1-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/discoverySourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/discoverySourcesCreateOrUpdateSample.js +cross-env node dist/discoverySourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deploymentmanager/arm-deploymentmanager/package.json b/sdk/deploymentmanager/arm-deploymentmanager/package.json index 2cf4b74d3a71..c25d80c112f4 100644 --- a/sdk/deploymentmanager/arm-deploymentmanager/package.json +++ b/sdk/deploymentmanager/arm-deploymentmanager/package.json @@ -37,7 +37,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/javascript/README.md b/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/javascript/README.md index 0846756dde47..3de58b2199bc 100644 --- a/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/javascript/README.md +++ b/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/javascript/README.md @@ -63,7 +63,7 @@ node artifactSourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node artifactSourcesCreateOrUpdateSample.js +cross-env node artifactSourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/typescript/README.md b/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/typescript/README.md index 8470d408e055..393fe4af98fa 100644 --- a/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/typescript/README.md +++ b/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/typescript/README.md @@ -75,7 +75,7 @@ node dist/artifactSourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/artifactSourcesCreateOrUpdateSample.js +cross-env node dist/artifactSourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/desktopvirtualization/arm-desktopvirtualization/package.json b/sdk/desktopvirtualization/arm-desktopvirtualization/package.json index 616ce24d6aa1..d5457db7ff8f 100644 --- a/sdk/desktopvirtualization/arm-desktopvirtualization/package.json +++ b/sdk/desktopvirtualization/arm-desktopvirtualization/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/javascript/README.md b/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/javascript/README.md index f05094c373d1..ee569559c1a0 100644 --- a/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/javascript/README.md +++ b/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/javascript/README.md @@ -116,7 +116,7 @@ node appAttachPackageCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DESKTOPVIRTUALIZATION_SUBSCRIPTION_ID="" DESKTOPVIRTUALIZATION_RESOURCE_GROUP="" node appAttachPackageCreateOrUpdateSample.js +cross-env DESKTOPVIRTUALIZATION_SUBSCRIPTION_ID="" DESKTOPVIRTUALIZATION_RESOURCE_GROUP="" node appAttachPackageCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/typescript/README.md b/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/typescript/README.md index 41605908c38c..d9e4e3c39e8d 100644 --- a/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/typescript/README.md +++ b/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/typescript/README.md @@ -128,7 +128,7 @@ node dist/appAttachPackageCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DESKTOPVIRTUALIZATION_SUBSCRIPTION_ID="" DESKTOPVIRTUALIZATION_RESOURCE_GROUP="" node dist/appAttachPackageCreateOrUpdateSample.js +cross-env DESKTOPVIRTUALIZATION_SUBSCRIPTION_ID="" DESKTOPVIRTUALIZATION_RESOURCE_GROUP="" node dist/appAttachPackageCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/devcenter/arm-devcenter/package.json b/sdk/devcenter/arm-devcenter/package.json index 49d455eadb3c..32b9379b8b58 100644 --- a/sdk/devcenter/arm-devcenter/package.json +++ b/sdk/devcenter/arm-devcenter/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/devcenter/arm-devcenter/samples/v1/javascript/README.md b/sdk/devcenter/arm-devcenter/samples/v1/javascript/README.md index 398d891f6750..303384c758fa 100644 --- a/sdk/devcenter/arm-devcenter/samples/v1/javascript/README.md +++ b/sdk/devcenter/arm-devcenter/samples/v1/javascript/README.md @@ -131,7 +131,7 @@ node attachedNetworksCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_SUBSCRIPTION_ID="" DEVCENTER_RESOURCE_GROUP="" node attachedNetworksCreateOrUpdateSample.js +cross-env DEVCENTER_SUBSCRIPTION_ID="" DEVCENTER_RESOURCE_GROUP="" node attachedNetworksCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/devcenter/arm-devcenter/samples/v1/typescript/README.md b/sdk/devcenter/arm-devcenter/samples/v1/typescript/README.md index aff1f35285ae..00781c2e492b 100644 --- a/sdk/devcenter/arm-devcenter/samples/v1/typescript/README.md +++ b/sdk/devcenter/arm-devcenter/samples/v1/typescript/README.md @@ -143,7 +143,7 @@ node dist/attachedNetworksCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_SUBSCRIPTION_ID="" DEVCENTER_RESOURCE_GROUP="" node dist/attachedNetworksCreateOrUpdateSample.js +cross-env DEVCENTER_SUBSCRIPTION_ID="" DEVCENTER_RESOURCE_GROUP="" node dist/attachedNetworksCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/devcenter/developer-devcenter-rest/package.json b/sdk/devcenter/developer-devcenter-rest/package.json index 0eae1f9d8f59..ac2b8aca209b 100644 --- a/sdk/devcenter/developer-devcenter-rest/package.json +++ b/sdk/devcenter/developer-devcenter-rest/package.json @@ -76,20 +76,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/javascript/README.md b/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/javascript/README.md index 4f0ceddc9578..67e3dc2f5a76 100644 --- a/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/javascript/README.md +++ b/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/javascript/README.md @@ -38,7 +38,7 @@ node sampleCreateDevBox.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_ENDPOINT="" node sampleCreateDevBox.js +cross-env DEVCENTER_ENDPOINT="" node sampleCreateDevBox.js ``` ## Next Steps diff --git a/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/typescript/README.md b/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/typescript/README.md index d4dac36e7e63..fa02a3f7e0e6 100644 --- a/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/typescript/README.md +++ b/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/typescript/README.md @@ -50,7 +50,7 @@ node dist/sampleCreateDevBox.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_ENDPOINT="" node dist/sampleCreateDevBox.js +cross-env DEVCENTER_ENDPOINT="" node dist/sampleCreateDevBox.js ``` ## Next Steps diff --git a/sdk/devcenter/developer-devcenter-rest/samples/v1/javascript/README.md b/sdk/devcenter/developer-devcenter-rest/samples/v1/javascript/README.md index f53668f0928d..d5e630a4aa08 100644 --- a/sdk/devcenter/developer-devcenter-rest/samples/v1/javascript/README.md +++ b/sdk/devcenter/developer-devcenter-rest/samples/v1/javascript/README.md @@ -47,7 +47,7 @@ node sampleCreateDevBox.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_ENDPOINT="" node sampleCreateDevBox.js +cross-env DEVCENTER_ENDPOINT="" node sampleCreateDevBox.js ``` ## Next Steps diff --git a/sdk/devcenter/developer-devcenter-rest/samples/v1/typescript/README.md b/sdk/devcenter/developer-devcenter-rest/samples/v1/typescript/README.md index e0565e1d287a..53cc0bd792d5 100644 --- a/sdk/devcenter/developer-devcenter-rest/samples/v1/typescript/README.md +++ b/sdk/devcenter/developer-devcenter-rest/samples/v1/typescript/README.md @@ -59,7 +59,7 @@ node dist/sampleCreateDevBox.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_ENDPOINT="" node dist/sampleCreateDevBox.js +cross-env DEVCENTER_ENDPOINT="" node dist/sampleCreateDevBox.js ``` ## Next Steps diff --git a/sdk/devhub/arm-devhub/package.json b/sdk/devhub/arm-devhub/package.json index 4ef09966c2e6..a775342219fa 100644 --- a/sdk/devhub/arm-devhub/package.json +++ b/sdk/devhub/arm-devhub/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/devhub/arm-devhub/samples/v1-beta/javascript/README.md b/sdk/devhub/arm-devhub/samples/v1-beta/javascript/README.md index bb1d5909b445..6e06745f106b 100644 --- a/sdk/devhub/arm-devhub/samples/v1-beta/javascript/README.md +++ b/sdk/devhub/arm-devhub/samples/v1-beta/javascript/README.md @@ -47,7 +47,7 @@ node generatePreviewArtifactsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVHUB_SUBSCRIPTION_ID="" node generatePreviewArtifactsSample.js +cross-env DEVHUB_SUBSCRIPTION_ID="" node generatePreviewArtifactsSample.js ``` ## Next Steps diff --git a/sdk/devhub/arm-devhub/samples/v1-beta/typescript/README.md b/sdk/devhub/arm-devhub/samples/v1-beta/typescript/README.md index 3208b8a892c0..284bc67ed4c3 100644 --- a/sdk/devhub/arm-devhub/samples/v1-beta/typescript/README.md +++ b/sdk/devhub/arm-devhub/samples/v1-beta/typescript/README.md @@ -59,7 +59,7 @@ node dist/generatePreviewArtifactsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVHUB_SUBSCRIPTION_ID="" node dist/generatePreviewArtifactsSample.js +cross-env DEVHUB_SUBSCRIPTION_ID="" node dist/generatePreviewArtifactsSample.js ``` ## Next Steps diff --git a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/package.json b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/package.json index f2e874bdee8f..681151fbb74a 100644 --- a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/package.json +++ b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/javascript/README.md b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/javascript/README.md index 42087d459393..fb6d544d3a53 100644 --- a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/javascript/README.md +++ b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/javascript/README.md @@ -60,7 +60,7 @@ node dpsCertificateCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dpsCertificateCreateOrUpdateSample.js +cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dpsCertificateCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/typescript/README.md b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/typescript/README.md index a4cf89f8549e..f8a8a0061d18 100644 --- a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/typescript/README.md +++ b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/typescript/README.md @@ -72,7 +72,7 @@ node dist/dpsCertificateCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dist/dpsCertificateCreateOrUpdateSample.js +cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dist/dpsCertificateCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/javascript/README.md b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/javascript/README.md index afbded6cda2b..8eadc9a0bf78 100644 --- a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/javascript/README.md +++ b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/javascript/README.md @@ -60,7 +60,7 @@ node dpsCertificateCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dpsCertificateCreateOrUpdateSample.js +cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dpsCertificateCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/typescript/README.md b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/typescript/README.md index fddb496bf264..8656f9e6d4d0 100644 --- a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/typescript/README.md +++ b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/typescript/README.md @@ -72,7 +72,7 @@ node dist/dpsCertificateCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dist/dpsCertificateCreateOrUpdateSample.js +cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dist/dpsCertificateCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deviceregistry/arm-deviceregistry/package.json b/sdk/deviceregistry/arm-deviceregistry/package.json index 3226a99ae883..37d52f9bebcc 100644 --- a/sdk/deviceregistry/arm-deviceregistry/package.json +++ b/sdk/deviceregistry/arm-deviceregistry/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/deviceregistry/arm-deviceregistry/samples/v1/javascript/README.md b/sdk/deviceregistry/arm-deviceregistry/samples/v1/javascript/README.md index 6b186a0637ad..f2072adcd21f 100644 --- a/sdk/deviceregistry/arm-deviceregistry/samples/v1/javascript/README.md +++ b/sdk/deviceregistry/arm-deviceregistry/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js +cross-env node assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js ``` ## Next Steps diff --git a/sdk/deviceregistry/arm-deviceregistry/samples/v1/typescript/README.md b/sdk/deviceregistry/arm-deviceregistry/samples/v1/typescript/README.md index 1d3a70310b12..a058eb40617c 100644 --- a/sdk/deviceregistry/arm-deviceregistry/samples/v1/typescript/README.md +++ b/sdk/deviceregistry/arm-deviceregistry/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js +cross-env node dist/assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js ``` ## Next Steps diff --git a/sdk/deviceupdate/arm-deviceupdate/package.json b/sdk/deviceupdate/arm-deviceupdate/package.json index b6a69c1634aa..7884d678fd41 100644 --- a/sdk/deviceupdate/arm-deviceupdate/package.json +++ b/sdk/deviceupdate/arm-deviceupdate/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/deviceupdate/arm-deviceupdate/samples/v1/javascript/README.md b/sdk/deviceupdate/arm-deviceupdate/samples/v1/javascript/README.md index 3e1956cf778b..6ca7c94e4826 100644 --- a/sdk/deviceupdate/arm-deviceupdate/samples/v1/javascript/README.md +++ b/sdk/deviceupdate/arm-deviceupdate/samples/v1/javascript/README.md @@ -63,7 +63,7 @@ node accountsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEUPDATE_SUBSCRIPTION_ID="" DEVICEUPDATE_RESOURCE_GROUP="" node accountsCreateSample.js +cross-env DEVICEUPDATE_SUBSCRIPTION_ID="" DEVICEUPDATE_RESOURCE_GROUP="" node accountsCreateSample.js ``` ## Next Steps diff --git a/sdk/deviceupdate/arm-deviceupdate/samples/v1/typescript/README.md b/sdk/deviceupdate/arm-deviceupdate/samples/v1/typescript/README.md index bc77ab157ef2..cff463acf85d 100644 --- a/sdk/deviceupdate/arm-deviceupdate/samples/v1/typescript/README.md +++ b/sdk/deviceupdate/arm-deviceupdate/samples/v1/typescript/README.md @@ -75,7 +75,7 @@ node dist/accountsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEUPDATE_SUBSCRIPTION_ID="" DEVICEUPDATE_RESOURCE_GROUP="" node dist/accountsCreateSample.js +cross-env DEVICEUPDATE_SUBSCRIPTION_ID="" DEVICEUPDATE_RESOURCE_GROUP="" node dist/accountsCreateSample.js ``` ## Next Steps diff --git a/sdk/deviceupdate/iot-device-update-rest/package.json b/sdk/deviceupdate/iot-device-update-rest/package.json index b4b7d9da9bfe..b2f7ef3a0feb 100644 --- a/sdk/deviceupdate/iot-device-update-rest/package.json +++ b/sdk/deviceupdate/iot-device-update-rest/package.json @@ -54,11 +54,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -91,9 +91,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/deviceupdate/iot-device-update-rest/samples/v1/javascript/README.md b/sdk/deviceupdate/iot-device-update-rest/samples/v1/javascript/README.md index 0aa2f4407a55..89261d1de124 100644 --- a/sdk/deviceupdate/iot-device-update-rest/samples/v1/javascript/README.md +++ b/sdk/deviceupdate/iot-device-update-rest/samples/v1/javascript/README.md @@ -44,7 +44,7 @@ node deleteUpdate.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" INSTANCE_ID="" DEVICEUPDATE_UPDATE_PROVIDER="" DEVICEUPDATE_UPDATE_NAME="" DEVICEUPDATE_UPDATE_VERSION="" node deleteUpdate.js +cross-env ENDPOINT="" INSTANCE_ID="" DEVICEUPDATE_UPDATE_PROVIDER="" DEVICEUPDATE_UPDATE_NAME="" DEVICEUPDATE_UPDATE_VERSION="" node deleteUpdate.js ``` ## Next Steps diff --git a/sdk/deviceupdate/iot-device-update-rest/samples/v1/typescript/README.md b/sdk/deviceupdate/iot-device-update-rest/samples/v1/typescript/README.md index 6c0d88e1bd7e..2b604ff46bc0 100644 --- a/sdk/deviceupdate/iot-device-update-rest/samples/v1/typescript/README.md +++ b/sdk/deviceupdate/iot-device-update-rest/samples/v1/typescript/README.md @@ -56,7 +56,7 @@ node dist/deleteUpdate.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" INSTANCE_ID="" DEVICEUPDATE_UPDATE_PROVIDER="" DEVICEUPDATE_UPDATE_NAME="" DEVICEUPDATE_UPDATE_VERSION="" node dist/deleteUpdate.js +cross-env ENDPOINT="" INSTANCE_ID="" DEVICEUPDATE_UPDATE_PROVIDER="" DEVICEUPDATE_UPDATE_NAME="" DEVICEUPDATE_UPDATE_VERSION="" node dist/deleteUpdate.js ``` ## Next Steps diff --git a/sdk/devopsinfrastructure/arm-devopsinfrastructure/package.json b/sdk/devopsinfrastructure/arm-devopsinfrastructure/package.json index 4e88baa900ad..f3ec4f5e8288 100644 --- a/sdk/devopsinfrastructure/arm-devopsinfrastructure/package.json +++ b/sdk/devopsinfrastructure/arm-devopsinfrastructure/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/javascript/README.md b/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/javascript/README.md index 93d4c6341d4d..97bb421fac3e 100644 --- a/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/javascript/README.md +++ b/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/javascript/README.md @@ -47,7 +47,7 @@ node imageVersionsListByImageSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node imageVersionsListByImageSample.js +cross-env node imageVersionsListByImageSample.js ``` ## Next Steps diff --git a/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/typescript/README.md b/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/typescript/README.md index 2741d8657fe8..57f554f0e32c 100644 --- a/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/typescript/README.md +++ b/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/typescript/README.md @@ -59,7 +59,7 @@ node dist/imageVersionsListByImageSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/imageVersionsListByImageSample.js +cross-env node dist/imageVersionsListByImageSample.js ``` ## Next Steps diff --git a/sdk/devspaces/arm-devspaces/package.json b/sdk/devspaces/arm-devspaces/package.json index c81bf2421602..6d5885f58ef1 100644 --- a/sdk/devspaces/arm-devspaces/package.json +++ b/sdk/devspaces/arm-devspaces/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/devspaces/arm-devspaces/samples/v2/javascript/README.md b/sdk/devspaces/arm-devspaces/samples/v2/javascript/README.md index 38ae61d501d0..98a16d938e30 100644 --- a/sdk/devspaces/arm-devspaces/samples/v2/javascript/README.md +++ b/sdk/devspaces/arm-devspaces/samples/v2/javascript/README.md @@ -44,7 +44,7 @@ node containerHostMappingsGetContainerHostMappingSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node containerHostMappingsGetContainerHostMappingSample.js +cross-env node containerHostMappingsGetContainerHostMappingSample.js ``` ## Next Steps diff --git a/sdk/devspaces/arm-devspaces/samples/v2/typescript/README.md b/sdk/devspaces/arm-devspaces/samples/v2/typescript/README.md index 52e466df7e2c..de3360cccba2 100644 --- a/sdk/devspaces/arm-devspaces/samples/v2/typescript/README.md +++ b/sdk/devspaces/arm-devspaces/samples/v2/typescript/README.md @@ -56,7 +56,7 @@ node dist/containerHostMappingsGetContainerHostMappingSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/containerHostMappingsGetContainerHostMappingSample.js +cross-env node dist/containerHostMappingsGetContainerHostMappingSample.js ``` ## Next Steps diff --git a/sdk/devtestlabs/arm-devtestlabs/package.json b/sdk/devtestlabs/arm-devtestlabs/package.json index 79d3b409149e..cfc3706d8689 100644 --- a/sdk/devtestlabs/arm-devtestlabs/package.json +++ b/sdk/devtestlabs/arm-devtestlabs/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/devtestlabs/arm-devtestlabs/samples/v4/javascript/README.md b/sdk/devtestlabs/arm-devtestlabs/samples/v4/javascript/README.md index 52678c4b4d76..e7b6e3be4a8f 100644 --- a/sdk/devtestlabs/arm-devtestlabs/samples/v4/javascript/README.md +++ b/sdk/devtestlabs/arm-devtestlabs/samples/v4/javascript/README.md @@ -168,7 +168,7 @@ node armTemplatesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node armTemplatesGetSample.js +cross-env node armTemplatesGetSample.js ``` ## Next Steps diff --git a/sdk/devtestlabs/arm-devtestlabs/samples/v4/typescript/README.md b/sdk/devtestlabs/arm-devtestlabs/samples/v4/typescript/README.md index 8354bb2fdc72..4f8fce16c3ec 100644 --- a/sdk/devtestlabs/arm-devtestlabs/samples/v4/typescript/README.md +++ b/sdk/devtestlabs/arm-devtestlabs/samples/v4/typescript/README.md @@ -180,7 +180,7 @@ node dist/armTemplatesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/armTemplatesGetSample.js +cross-env node dist/armTemplatesGetSample.js ``` ## Next Steps diff --git a/sdk/digitaltwins/arm-digitaltwins/package.json b/sdk/digitaltwins/arm-digitaltwins/package.json index 3856c6be048b..73fda8d125d1 100644 --- a/sdk/digitaltwins/arm-digitaltwins/package.json +++ b/sdk/digitaltwins/arm-digitaltwins/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/digitaltwins/arm-digitaltwins/samples/v3/javascript/README.md b/sdk/digitaltwins/arm-digitaltwins/samples/v3/javascript/README.md index 4230767024d7..d1ee67b3f508 100644 --- a/sdk/digitaltwins/arm-digitaltwins/samples/v3/javascript/README.md +++ b/sdk/digitaltwins/arm-digitaltwins/samples/v3/javascript/README.md @@ -58,7 +58,7 @@ node digitalTwinsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DIGITALTWINS_SUBSCRIPTION_ID="" node digitalTwinsCheckNameAvailabilitySample.js +cross-env DIGITALTWINS_SUBSCRIPTION_ID="" node digitalTwinsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/digitaltwins/arm-digitaltwins/samples/v3/typescript/README.md b/sdk/digitaltwins/arm-digitaltwins/samples/v3/typescript/README.md index dd6a2981f6c4..ab65732273fe 100644 --- a/sdk/digitaltwins/arm-digitaltwins/samples/v3/typescript/README.md +++ b/sdk/digitaltwins/arm-digitaltwins/samples/v3/typescript/README.md @@ -70,7 +70,7 @@ node dist/digitalTwinsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DIGITALTWINS_SUBSCRIPTION_ID="" node dist/digitalTwinsCheckNameAvailabilitySample.js +cross-env DIGITALTWINS_SUBSCRIPTION_ID="" node dist/digitalTwinsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/digitaltwins/digital-twins-core/package.json b/sdk/digitaltwins/digital-twins-core/package.json index c7ab2ca2134b..c037a7915c40 100644 --- a/sdk/digitaltwins/digital-twins-core/package.json +++ b/sdk/digitaltwins/digital-twins-core/package.json @@ -14,12 +14,12 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm dist-browser test-dist test-browser types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm dist-browser test-dist test-browser types *.tgz *.log", "execute:js-samples": "node ../../../common/scripts/run-samples.js samples/javascript/", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -71,9 +71,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/digitaltwins/digital-twins-core/samples/v1/javascript/README.md b/sdk/digitaltwins/digital-twins-core/samples/v1/javascript/README.md index 3fe132618373..2ccf3a55306b 100644 --- a/sdk/digitaltwins/digital-twins-core/samples/v1/javascript/README.md +++ b/sdk/digitaltwins/digital-twins-core/samples/v1/javascript/README.md @@ -66,7 +66,7 @@ node dt_component_lifecycle.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_DIGITALTWINS_URL="" node dt_component_lifecycle.js +cross-env AZURE_DIGITALTWINS_URL="" node dt_component_lifecycle.js ``` ## Next Steps diff --git a/sdk/digitaltwins/digital-twins-core/samples/v1/typescript/README.md b/sdk/digitaltwins/digital-twins-core/samples/v1/typescript/README.md index 836bc65faa33..971824adbcdd 100644 --- a/sdk/digitaltwins/digital-twins-core/samples/v1/typescript/README.md +++ b/sdk/digitaltwins/digital-twins-core/samples/v1/typescript/README.md @@ -78,7 +78,7 @@ node dist/dt_component_lifecycle.ts Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_DIGITALTWINS_URL="" node dist/dt_component_lifecycle.js +cross-env AZURE_DIGITALTWINS_URL="" node dist/dt_component_lifecycle.js ``` ## Next Steps diff --git a/sdk/digitaltwins/digital-twins-core/samples/v2/javascript/README.md b/sdk/digitaltwins/digital-twins-core/samples/v2/javascript/README.md index 906e3f61ba9a..208696c6a7fa 100644 --- a/sdk/digitaltwins/digital-twins-core/samples/v2/javascript/README.md +++ b/sdk/digitaltwins/digital-twins-core/samples/v2/javascript/README.md @@ -66,7 +66,7 @@ node dt_component_lifecycle.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_DIGITALTWINS_URL="" node dt_component_lifecycle.js +cross-env AZURE_DIGITALTWINS_URL="" node dt_component_lifecycle.js ``` ## Next Steps diff --git a/sdk/digitaltwins/digital-twins-core/samples/v2/typescript/README.md b/sdk/digitaltwins/digital-twins-core/samples/v2/typescript/README.md index 032457e64059..7995feb54412 100644 --- a/sdk/digitaltwins/digital-twins-core/samples/v2/typescript/README.md +++ b/sdk/digitaltwins/digital-twins-core/samples/v2/typescript/README.md @@ -78,7 +78,7 @@ node dist/dt_component_lifecycle.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_DIGITALTWINS_URL="" node dist/dt_component_lifecycle.js +cross-env AZURE_DIGITALTWINS_URL="" node dist/dt_component_lifecycle.js ``` ## Next Steps diff --git a/sdk/dns/arm-dns-profile-2020-09-01-hybrid/package.json b/sdk/dns/arm-dns-profile-2020-09-01-hybrid/package.json index f435938beb11..f55299b7d05e 100644 --- a/sdk/dns/arm-dns-profile-2020-09-01-hybrid/package.json +++ b/sdk/dns/arm-dns-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/dns/arm-dns/package.json b/sdk/dns/arm-dns/package.json index fc1ffa3fb5d2..e4cff0261276 100644 --- a/sdk/dns/arm-dns/package.json +++ b/sdk/dns/arm-dns/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/dns/arm-dns/samples/v5-beta/javascript/README.md b/sdk/dns/arm-dns/samples/v5-beta/javascript/README.md index 5543007a2a83..afce92bbbfca 100644 --- a/sdk/dns/arm-dns/samples/v5-beta/javascript/README.md +++ b/sdk/dns/arm-dns/samples/v5-beta/javascript/README.md @@ -54,7 +54,7 @@ node dnsResourceReferenceGetByTargetResourcesSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DNS_SUBSCRIPTION_ID="" node dnsResourceReferenceGetByTargetResourcesSample.js +cross-env DNS_SUBSCRIPTION_ID="" node dnsResourceReferenceGetByTargetResourcesSample.js ``` ## Next Steps diff --git a/sdk/dns/arm-dns/samples/v5-beta/typescript/README.md b/sdk/dns/arm-dns/samples/v5-beta/typescript/README.md index e8a469600542..138619ef4832 100644 --- a/sdk/dns/arm-dns/samples/v5-beta/typescript/README.md +++ b/sdk/dns/arm-dns/samples/v5-beta/typescript/README.md @@ -66,7 +66,7 @@ node dist/dnsResourceReferenceGetByTargetResourcesSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DNS_SUBSCRIPTION_ID="" node dist/dnsResourceReferenceGetByTargetResourcesSample.js +cross-env DNS_SUBSCRIPTION_ID="" node dist/dnsResourceReferenceGetByTargetResourcesSample.js ``` ## Next Steps diff --git a/sdk/dnsresolver/arm-dnsresolver/package.json b/sdk/dnsresolver/arm-dnsresolver/package.json index beae1e3f4278..ebed1d32c377 100644 --- a/sdk/dnsresolver/arm-dnsresolver/package.json +++ b/sdk/dnsresolver/arm-dnsresolver/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/dnsresolver/arm-dnsresolver/samples/v1/javascript/README.md b/sdk/dnsresolver/arm-dnsresolver/samples/v1/javascript/README.md index 969124935c5f..d58b602bbb2f 100644 --- a/sdk/dnsresolver/arm-dnsresolver/samples/v1/javascript/README.md +++ b/sdk/dnsresolver/arm-dnsresolver/samples/v1/javascript/README.md @@ -94,7 +94,7 @@ node dnsForwardingRulesetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DNSRESOLVER_SUBSCRIPTION_ID="" DNSRESOLVER_RESOURCE_GROUP="" node dnsForwardingRulesetsCreateOrUpdateSample.js +cross-env DNSRESOLVER_SUBSCRIPTION_ID="" DNSRESOLVER_RESOURCE_GROUP="" node dnsForwardingRulesetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dnsresolver/arm-dnsresolver/samples/v1/typescript/README.md b/sdk/dnsresolver/arm-dnsresolver/samples/v1/typescript/README.md index 4ae4e4e32fcb..25cd038dc17d 100644 --- a/sdk/dnsresolver/arm-dnsresolver/samples/v1/typescript/README.md +++ b/sdk/dnsresolver/arm-dnsresolver/samples/v1/typescript/README.md @@ -106,7 +106,7 @@ node dist/dnsForwardingRulesetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DNSRESOLVER_SUBSCRIPTION_ID="" DNSRESOLVER_RESOURCE_GROUP="" node dist/dnsForwardingRulesetsCreateOrUpdateSample.js +cross-env DNSRESOLVER_SUBSCRIPTION_ID="" DNSRESOLVER_RESOURCE_GROUP="" node dist/dnsForwardingRulesetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/documentintelligence/ai-document-intelligence-rest/package.json b/sdk/documentintelligence/ai-document-intelligence-rest/package.json index bcbadd6e3905..c317d311d202 100644 --- a/sdk/documentintelligence/ai-document-intelligence-rest/package.json +++ b/sdk/documentintelligence/ai-document-intelligence-rest/package.json @@ -74,21 +74,25 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz", - "execute:samples": "echo skipped", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz", "customize": "dev-tool customization apply-v2 -s ./generated -c ./src && npm run format", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "execute:samples": "echo skipped", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/javascript/README.md b/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/javascript/README.md index 93a453b1b501..c692937b42f9 100644 --- a/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/javascript/README.md +++ b/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/javascript/README.md @@ -48,7 +48,7 @@ node composeModel.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DOCUMENT_INTELLIGENCE_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node composeModel.js +cross-env DOCUMENT_INTELLIGENCE_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node composeModel.js ``` ## Next Steps diff --git a/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/typescript/README.md b/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/typescript/README.md index 2c02c20eeb64..b6883944f335 100644 --- a/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/typescript/README.md +++ b/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/typescript/README.md @@ -65,7 +65,7 @@ node dist/composeModel.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DOCUMENT_INTELLIGENCE_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node dist/composeModel.js +cross-env DOCUMENT_INTELLIGENCE_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node dist/composeModel.js ``` ## Next Steps diff --git a/sdk/documenttranslator/ai-document-translator-rest/package.json b/sdk/documenttranslator/ai-document-translator-rest/package.json index bf8369c70f40..8bf73486ad9e 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/package.json +++ b/sdk/documenttranslator/ai-document-translator-rest/package.json @@ -57,11 +57,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -93,9 +93,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/javascript/README.md b/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/javascript/README.md index 0e678140fdc1..f1d404aa7631 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/javascript/README.md +++ b/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/javascript/README.md @@ -51,7 +51,7 @@ node listFormats.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node listFormats.js +cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node listFormats.js ``` ## Next Steps diff --git a/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/typescript/README.md b/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/typescript/README.md index 1ae77187e7e7..92f45a447ca2 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/typescript/README.md +++ b/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/typescript/README.md @@ -63,7 +63,7 @@ node dist/listFormats.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node dist/listFormats.js +cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node dist/listFormats.js ``` ## Next Steps diff --git a/sdk/documenttranslator/ai-document-translator-rest/samples/v1/javascript/README.md b/sdk/documenttranslator/ai-document-translator-rest/samples/v1/javascript/README.md index 8bcf868e93d2..6ba775475eb5 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/samples/v1/javascript/README.md +++ b/sdk/documenttranslator/ai-document-translator-rest/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node listFormats.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node listFormats.js +cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node listFormats.js ``` ## Next Steps diff --git a/sdk/documenttranslator/ai-document-translator-rest/samples/v1/typescript/README.md b/sdk/documenttranslator/ai-document-translator-rest/samples/v1/typescript/README.md index 8b4a43543e29..b8c6e967ab39 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/samples/v1/typescript/README.md +++ b/sdk/documenttranslator/ai-document-translator-rest/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/listFormats.ts Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node dist/listFormats.js +cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node dist/listFormats.js ``` ## Next Steps diff --git a/sdk/domainservices/arm-domainservices/package.json b/sdk/domainservices/arm-domainservices/package.json index 73f937c1e0d7..16da0da799d3 100644 --- a/sdk/domainservices/arm-domainservices/package.json +++ b/sdk/domainservices/arm-domainservices/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/domainservices/arm-domainservices/samples/v4/javascript/README.md b/sdk/domainservices/arm-domainservices/samples/v4/javascript/README.md index cf82f5f5d692..4907eb9dc9dc 100644 --- a/sdk/domainservices/arm-domainservices/samples/v4/javascript/README.md +++ b/sdk/domainservices/arm-domainservices/samples/v4/javascript/README.md @@ -49,7 +49,7 @@ node domainServiceOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node domainServiceOperationsListSample.js +cross-env node domainServiceOperationsListSample.js ``` ## Next Steps diff --git a/sdk/domainservices/arm-domainservices/samples/v4/typescript/README.md b/sdk/domainservices/arm-domainservices/samples/v4/typescript/README.md index 9a83dea5b3e1..16a9b505cb8c 100644 --- a/sdk/domainservices/arm-domainservices/samples/v4/typescript/README.md +++ b/sdk/domainservices/arm-domainservices/samples/v4/typescript/README.md @@ -61,7 +61,7 @@ node dist/domainServiceOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/domainServiceOperationsListSample.js +cross-env node dist/domainServiceOperationsListSample.js ``` ## Next Steps diff --git a/sdk/durabletask/arm-durabletask/package.json b/sdk/durabletask/arm-durabletask/package.json index d6a1c81df06a..7ef093beea2a 100644 --- a/sdk/durabletask/arm-durabletask/package.json +++ b/sdk/durabletask/arm-durabletask/package.json @@ -64,12 +64,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -83,28 +83,32 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", + "extract-api": "rimraf review && dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/durabletask/arm-durabletask/samples/v1/javascript/README.md b/sdk/durabletask/arm-durabletask/samples/v1/javascript/README.md index aee43a5462fd..516768642d36 100644 --- a/sdk/durabletask/arm-durabletask/samples/v1/javascript/README.md +++ b/sdk/durabletask/arm-durabletask/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/durabletask/arm-durabletask/samples/v1/typescript/README.md b/sdk/durabletask/arm-durabletask/samples/v1/typescript/README.md index 1b9ec96d0410..037efe1e9af9 100644 --- a/sdk/durabletask/arm-durabletask/samples/v1/typescript/README.md +++ b/sdk/durabletask/arm-durabletask/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/dynatrace/arm-dynatrace/package.json b/sdk/dynatrace/arm-dynatrace/package.json index f0a9a297ddc6..6913388fa6b7 100644 --- a/sdk/dynatrace/arm-dynatrace/package.json +++ b/sdk/dynatrace/arm-dynatrace/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/dynatrace/arm-dynatrace/samples/v2/javascript/README.md b/sdk/dynatrace/arm-dynatrace/samples/v2/javascript/README.md index c72e109c5fc2..9ad27024e14b 100644 --- a/sdk/dynatrace/arm-dynatrace/samples/v2/javascript/README.md +++ b/sdk/dynatrace/arm-dynatrace/samples/v2/javascript/README.md @@ -58,7 +58,7 @@ node monitorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DYNATRACE_SUBSCRIPTION_ID="" DYNATRACE_RESOURCE_GROUP="" node monitorsCreateOrUpdateSample.js +cross-env DYNATRACE_SUBSCRIPTION_ID="" DYNATRACE_RESOURCE_GROUP="" node monitorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dynatrace/arm-dynatrace/samples/v2/typescript/README.md b/sdk/dynatrace/arm-dynatrace/samples/v2/typescript/README.md index 395ff15adbb0..675205eab795 100644 --- a/sdk/dynatrace/arm-dynatrace/samples/v2/typescript/README.md +++ b/sdk/dynatrace/arm-dynatrace/samples/v2/typescript/README.md @@ -70,7 +70,7 @@ node dist/monitorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DYNATRACE_SUBSCRIPTION_ID="" DYNATRACE_RESOURCE_GROUP="" node dist/monitorsCreateOrUpdateSample.js +cross-env DYNATRACE_SUBSCRIPTION_ID="" DYNATRACE_RESOURCE_GROUP="" node dist/monitorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/easm/defender-easm-rest/package.json b/sdk/easm/defender-easm-rest/package.json index 584370bb1d76..c7ffd4adffa4 100644 --- a/sdk/easm/defender-easm-rest/package.json +++ b/sdk/easm/defender-easm-rest/package.json @@ -73,20 +73,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/easm/defender-easm-rest/samples/v1-beta/javascript/README.md b/sdk/easm/defender-easm-rest/samples/v1-beta/javascript/README.md index b045517749d4..393a1e30a404 100644 --- a/sdk/easm/defender-easm-rest/samples/v1-beta/javascript/README.md +++ b/sdk/easm/defender-easm-rest/samples/v1-beta/javascript/README.md @@ -40,7 +40,7 @@ node discoTemplateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SUBSCRIPTIONID="" RESOURCEGROUPNAME="" WORKSPACENAME="" REGION="" PARTIAL_NAME="" node discoTemplateSample.js +cross-env SUBSCRIPTIONID="" RESOURCEGROUPNAME="" WORKSPACENAME="" REGION="" PARTIAL_NAME="" node discoTemplateSample.js ``` ## Next Steps diff --git a/sdk/easm/defender-easm-rest/samples/v1-beta/typescript/README.md b/sdk/easm/defender-easm-rest/samples/v1-beta/typescript/README.md index 8984b7116f56..6d6356e69d4c 100644 --- a/sdk/easm/defender-easm-rest/samples/v1-beta/typescript/README.md +++ b/sdk/easm/defender-easm-rest/samples/v1-beta/typescript/README.md @@ -52,7 +52,7 @@ node dist/discoTemplateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SUBSCRIPTIONID="" RESOURCEGROUPNAME="" WORKSPACENAME="" REGION="" PARTIAL_NAME="" node dist/discoTemplateSample.js +cross-env SUBSCRIPTIONID="" RESOURCEGROUPNAME="" WORKSPACENAME="" REGION="" PARTIAL_NAME="" node dist/discoTemplateSample.js ``` ## Next Steps diff --git a/sdk/edgezones/arm-edgezones/package.json b/sdk/edgezones/arm-edgezones/package.json index 7b00f208f793..b1cd080973c4 100644 --- a/sdk/edgezones/arm-edgezones/package.json +++ b/sdk/edgezones/arm-edgezones/package.json @@ -74,20 +74,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/education/arm-education/package.json b/sdk/education/arm-education/package.json index c6910f46eceb..2b3b521d1bc2 100644 --- a/sdk/education/arm-education/package.json +++ b/sdk/education/arm-education/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/education/arm-education/samples/v1-beta/javascript/README.md b/sdk/education/arm-education/samples/v1-beta/javascript/README.md index be6a11090331..69d4b2965227 100644 --- a/sdk/education/arm-education/samples/v1-beta/javascript/README.md +++ b/sdk/education/arm-education/samples/v1-beta/javascript/README.md @@ -57,7 +57,7 @@ node grantsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node grantsGetSample.js +cross-env node grantsGetSample.js ``` ## Next Steps diff --git a/sdk/education/arm-education/samples/v1-beta/typescript/README.md b/sdk/education/arm-education/samples/v1-beta/typescript/README.md index 03b1c148d071..38f0340061cd 100644 --- a/sdk/education/arm-education/samples/v1-beta/typescript/README.md +++ b/sdk/education/arm-education/samples/v1-beta/typescript/README.md @@ -69,7 +69,7 @@ node dist/grantsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/grantsGetSample.js +cross-env node dist/grantsGetSample.js ``` ## Next Steps diff --git a/sdk/elastic/arm-elastic/package.json b/sdk/elastic/arm-elastic/package.json index ba14f69b4fbb..1b5e78790d90 100644 --- a/sdk/elastic/arm-elastic/package.json +++ b/sdk/elastic/arm-elastic/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/elastic/arm-elastic/samples/v1/javascript/README.md b/sdk/elastic/arm-elastic/samples/v1/javascript/README.md index 0783e0517499..5f902b4cea96 100644 --- a/sdk/elastic/arm-elastic/samples/v1/javascript/README.md +++ b/sdk/elastic/arm-elastic/samples/v1/javascript/README.md @@ -73,7 +73,7 @@ node allTrafficFiltersListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTIC_SUBSCRIPTION_ID="" ELASTIC_RESOURCE_GROUP="" node allTrafficFiltersListSample.js +cross-env ELASTIC_SUBSCRIPTION_ID="" ELASTIC_RESOURCE_GROUP="" node allTrafficFiltersListSample.js ``` ## Next Steps diff --git a/sdk/elastic/arm-elastic/samples/v1/typescript/README.md b/sdk/elastic/arm-elastic/samples/v1/typescript/README.md index f611f0ad97b7..084ba9836e8d 100644 --- a/sdk/elastic/arm-elastic/samples/v1/typescript/README.md +++ b/sdk/elastic/arm-elastic/samples/v1/typescript/README.md @@ -85,7 +85,7 @@ node dist/allTrafficFiltersListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTIC_SUBSCRIPTION_ID="" ELASTIC_RESOURCE_GROUP="" node dist/allTrafficFiltersListSample.js +cross-env ELASTIC_SUBSCRIPTION_ID="" ELASTIC_RESOURCE_GROUP="" node dist/allTrafficFiltersListSample.js ``` ## Next Steps diff --git a/sdk/elasticsans/arm-elasticsan/package.json b/sdk/elasticsans/arm-elasticsan/package.json index 2f14fac185a6..d9bb4cc998e7 100644 --- a/sdk/elasticsans/arm-elasticsan/package.json +++ b/sdk/elasticsans/arm-elasticsan/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/elasticsans/arm-elasticsan/samples/v1-beta/javascript/README.md b/sdk/elasticsans/arm-elasticsan/samples/v1-beta/javascript/README.md index 6996867fff9c..72eaf9a1c996 100644 --- a/sdk/elasticsans/arm-elasticsan/samples/v1-beta/javascript/README.md +++ b/sdk/elasticsans/arm-elasticsan/samples/v1-beta/javascript/README.md @@ -66,7 +66,7 @@ node elasticSansCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node elasticSansCreateSample.js +cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node elasticSansCreateSample.js ``` ## Next Steps diff --git a/sdk/elasticsans/arm-elasticsan/samples/v1-beta/typescript/README.md b/sdk/elasticsans/arm-elasticsan/samples/v1-beta/typescript/README.md index c395ce04b271..92dabf64d69e 100644 --- a/sdk/elasticsans/arm-elasticsan/samples/v1-beta/typescript/README.md +++ b/sdk/elasticsans/arm-elasticsan/samples/v1-beta/typescript/README.md @@ -78,7 +78,7 @@ node dist/elasticSansCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node dist/elasticSansCreateSample.js +cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node dist/elasticSansCreateSample.js ``` ## Next Steps diff --git a/sdk/elasticsans/arm-elasticsan/samples/v1/javascript/README.md b/sdk/elasticsans/arm-elasticsan/samples/v1/javascript/README.md index faf01ff0ac90..a94e72857bea 100644 --- a/sdk/elasticsans/arm-elasticsan/samples/v1/javascript/README.md +++ b/sdk/elasticsans/arm-elasticsan/samples/v1/javascript/README.md @@ -63,7 +63,7 @@ node elasticSansCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node elasticSansCreateSample.js +cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node elasticSansCreateSample.js ``` ## Next Steps diff --git a/sdk/elasticsans/arm-elasticsan/samples/v1/typescript/README.md b/sdk/elasticsans/arm-elasticsan/samples/v1/typescript/README.md index 97cf5d96a57f..0cf2f6317983 100644 --- a/sdk/elasticsans/arm-elasticsan/samples/v1/typescript/README.md +++ b/sdk/elasticsans/arm-elasticsan/samples/v1/typescript/README.md @@ -75,7 +75,7 @@ node dist/elasticSansCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node dist/elasticSansCreateSample.js +cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node dist/elasticSansCreateSample.js ``` ## Next Steps diff --git a/sdk/entra/functions-authentication-events/package.json b/sdk/entra/functions-authentication-events/package.json index 2ec659952033..186e3e120e69 100644 --- a/sdk/entra/functions-authentication-events/package.json +++ b/sdk/entra/functions-authentication-events/package.json @@ -9,11 +9,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -62,9 +62,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventgrid/arm-eventgrid/package.json b/sdk/eventgrid/arm-eventgrid/package.json index 7f0f6f6ed0de..93a2b2190f61 100644 --- a/sdk/eventgrid/arm-eventgrid/package.json +++ b/sdk/eventgrid/arm-eventgrid/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/eventgrid/arm-eventgrid/samples/v15-beta/javascript/README.md b/sdk/eventgrid/arm-eventgrid/samples/v15-beta/javascript/README.md index 41e4822a846b..0d3c02b83455 100644 --- a/sdk/eventgrid/arm-eventgrid/samples/v15-beta/javascript/README.md +++ b/sdk/eventgrid/arm-eventgrid/samples/v15-beta/javascript/README.md @@ -216,7 +216,7 @@ node caCertificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTGRID_SUBSCRIPTION_ID="" EVENTGRID_RESOURCE_GROUP="" node caCertificatesCreateOrUpdateSample.js +cross-env EVENTGRID_SUBSCRIPTION_ID="" EVENTGRID_RESOURCE_GROUP="" node caCertificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/eventgrid/arm-eventgrid/samples/v15-beta/typescript/README.md b/sdk/eventgrid/arm-eventgrid/samples/v15-beta/typescript/README.md index 51b1cc887818..cb19266a72e2 100644 --- a/sdk/eventgrid/arm-eventgrid/samples/v15-beta/typescript/README.md +++ b/sdk/eventgrid/arm-eventgrid/samples/v15-beta/typescript/README.md @@ -228,7 +228,7 @@ node dist/caCertificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTGRID_SUBSCRIPTION_ID="" EVENTGRID_RESOURCE_GROUP="" node dist/caCertificatesCreateOrUpdateSample.js +cross-env EVENTGRID_SUBSCRIPTION_ID="" EVENTGRID_RESOURCE_GROUP="" node dist/caCertificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid-namespaces/package.json b/sdk/eventgrid/eventgrid-namespaces/package.json index 8872e844f747..f71771dcc6ea 100644 --- a/sdk/eventgrid/eventgrid-namespaces/package.json +++ b/sdk/eventgrid/eventgrid-namespaces/package.json @@ -44,11 +44,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "dev-tool samples publish -f", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -80,9 +80,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/javascript/README.md b/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/javascript/README.md index 3b6208cd47fd..f7ce61a035a0 100644 --- a/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/javascript/README.md +++ b/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/javascript/README.md @@ -51,7 +51,7 @@ node namespaceActivities.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node namespaceActivities.js +cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node namespaceActivities.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/typescript/README.md b/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/typescript/README.md index afebfb783e91..679ebf4241d6 100644 --- a/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/typescript/README.md +++ b/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/typescript/README.md @@ -63,7 +63,7 @@ node dist/namespaceActivities.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node dist/namespaceActivities.js +cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node dist/namespaceActivities.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid-namespaces/samples/v1/javascript/README.md b/sdk/eventgrid/eventgrid-namespaces/samples/v1/javascript/README.md index 8340fa44138b..5b52ed925c21 100644 --- a/sdk/eventgrid/eventgrid-namespaces/samples/v1/javascript/README.md +++ b/sdk/eventgrid/eventgrid-namespaces/samples/v1/javascript/README.md @@ -51,7 +51,7 @@ node namespaceActivities.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node namespaceActivities.js +cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node namespaceActivities.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid-namespaces/samples/v1/typescript/README.md b/sdk/eventgrid/eventgrid-namespaces/samples/v1/typescript/README.md index 8fa8643beaa9..4613b5664022 100644 --- a/sdk/eventgrid/eventgrid-namespaces/samples/v1/typescript/README.md +++ b/sdk/eventgrid/eventgrid-namespaces/samples/v1/typescript/README.md @@ -63,7 +63,7 @@ node dist/namespaceActivities.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node dist/namespaceActivities.js +cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node dist/namespaceActivities.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid-perf-tests/package.json b/sdk/eventgrid/eventgrid-perf-tests/package.json index a6bafa4be2a5..40b4e114a085 100644 --- a/sdk/eventgrid/eventgrid-perf-tests/package.json +++ b/sdk/eventgrid/eventgrid-perf-tests/package.json @@ -60,17 +60,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/eventgrid/eventgrid-systemevents/package.json b/sdk/eventgrid/eventgrid-systemevents/package.json index 6993921931f1..f4cc77f0e288 100644 --- a/sdk/eventgrid/eventgrid-systemevents/package.json +++ b/sdk/eventgrid/eventgrid-systemevents/package.json @@ -32,11 +32,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -62,8 +62,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventgrid/eventgrid/package.json b/sdk/eventgrid/eventgrid/package.json index 41ff6e749b2c..7616ffa0fc49 100644 --- a/sdk/eventgrid/eventgrid/package.json +++ b/sdk/eventgrid/eventgrid/package.json @@ -61,11 +61,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md && node ./scripts/setPathToEmpty.js", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -97,9 +97,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventgrid/eventgrid/samples/v5/javascript/README.md b/sdk/eventgrid/eventgrid/samples/v5/javascript/README.md index b55d24280b07..19b8d708ddf9 100644 --- a/sdk/eventgrid/eventgrid/samples/v5/javascript/README.md +++ b/sdk/eventgrid/eventgrid/samples/v5/javascript/README.md @@ -53,7 +53,7 @@ node consumeEventsFromServiceBusQueue.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SERVICE_BUS_FQDN="" SERVICE_BUS_QUEUE_NAME="" node consumeEventsFromServiceBusQueue.js +cross-env SERVICE_BUS_FQDN="" SERVICE_BUS_QUEUE_NAME="" node consumeEventsFromServiceBusQueue.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid/samples/v5/typescript/README.md b/sdk/eventgrid/eventgrid/samples/v5/typescript/README.md index 39738438ccd1..b557ed74fd36 100644 --- a/sdk/eventgrid/eventgrid/samples/v5/typescript/README.md +++ b/sdk/eventgrid/eventgrid/samples/v5/typescript/README.md @@ -65,7 +65,7 @@ node dist/consumeEventsFromServiceBusQueue.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SERVICE_BUS_FQDN="" SERVICE_BUS_QUEUE_NAME="" node dist/consumeEventsFromServiceBusQueue.js +cross-env SERVICE_BUS_FQDN="" SERVICE_BUS_QUEUE_NAME="" node dist/consumeEventsFromServiceBusQueue.js ``` ## Next Steps diff --git a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/package.json b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/package.json index 454a8d26a9e7..7e65d257aa48 100644 --- a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/package.json +++ b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 31710d893e92..2cd593fe101b 100644 --- a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -80,7 +80,7 @@ node clustersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node clustersCreateOrUpdateSample.js +cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node clustersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 908ecf1c674b..a5d38f432b16 100644 --- a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -92,7 +92,7 @@ node dist/clustersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node dist/clustersCreateOrUpdateSample.js +cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node dist/clustersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/eventhub/arm-eventhub/package.json b/sdk/eventhub/arm-eventhub/package.json index a5e65d365587..9d8e9a4364c8 100644 --- a/sdk/eventhub/arm-eventhub/package.json +++ b/sdk/eventhub/arm-eventhub/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -61,7 +64,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/eventhub/arm-eventhub/samples/v5-beta/javascript/README.md b/sdk/eventhub/arm-eventhub/samples/v5-beta/javascript/README.md index a2bc9c27461b..9d739c616d76 100644 --- a/sdk/eventhub/arm-eventhub/samples/v5-beta/javascript/README.md +++ b/sdk/eventhub/arm-eventhub/samples/v5-beta/javascript/README.md @@ -103,7 +103,7 @@ node applicationGroupCreateOrUpdateApplicationGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node applicationGroupCreateOrUpdateApplicationGroupSample.js +cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node applicationGroupCreateOrUpdateApplicationGroupSample.js ``` ## Next Steps diff --git a/sdk/eventhub/arm-eventhub/samples/v5-beta/typescript/README.md b/sdk/eventhub/arm-eventhub/samples/v5-beta/typescript/README.md index 429cc3986738..dc5a46f80f46 100644 --- a/sdk/eventhub/arm-eventhub/samples/v5-beta/typescript/README.md +++ b/sdk/eventhub/arm-eventhub/samples/v5-beta/typescript/README.md @@ -115,7 +115,7 @@ node dist/applicationGroupCreateOrUpdateApplicationGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node dist/applicationGroupCreateOrUpdateApplicationGroupSample.js +cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node dist/applicationGroupCreateOrUpdateApplicationGroupSample.js ``` ## Next Steps diff --git a/sdk/eventhub/event-hubs-perf-tests/package.json b/sdk/eventhub/event-hubs-perf-tests/package.json index d9e2d05e49d7..97f3485bddcf 100644 --- a/sdk/eventhub/event-hubs-perf-tests/package.json +++ b/sdk/eventhub/event-hubs-perf-tests/package.json @@ -54,17 +54,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm test-dist typings *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm test-dist typings *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/eventhub/event-hubs/package.json b/sdk/eventhub/event-hubs/package.json index 9a25fe469473..cb5c138d7767 100644 --- a/sdk/eventhub/event-hubs/package.json +++ b/sdk/eventhub/event-hubs/package.json @@ -33,21 +33,21 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "build:test:browser": "dev-tool run build-package && dev-tool run build-test", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"scripts/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"scripts/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "clean": "rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"scripts/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "generate-certs": "dev-tool run vendored tsx scripts/generateCerts.mts", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"scripts/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "generate-certs": "tsx scripts/generateCerts.mts", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "tsc -p . --module \"commonjs\" && node dist-esm/test/perf/track-2/index.spec.js", "test": "npm run test:node && npm run test:browser", "test:browser": "echo skipped", - "test:browser:live": "dev-tool run build-package && dev-tool run build-test && dev-tool run vendored cross-env TEST_MODE=live dev-tool run test:vitest --browser --no-test-proxy", - "test:node": "npm run generate-certs && dev-tool run vendored cross-env NODE_EXTRA_CA_CERTS=\"./certs/my-private-root-ca.crt.pem\" AZURE_LOG_LEVEL=\"info\" npm run vitest:node", - "test:node:live": "dev-tool run build-package && dev-tool run vendored cross-env TEST_MODE=live npm run vitest:node", + "test:browser:live": "dev-tool run build-package && dev-tool run build-test && cross-env TEST_MODE=live dev-tool run test:vitest --browser --no-test-proxy", + "test:node": "npm run generate-certs && cross-env NODE_EXTRA_CA_CERTS=\"./certs/my-private-root-ca.crt.pem\" AZURE_LOG_LEVEL=\"info\" npm run vitest:node", + "test:node:live": "dev-tool run build-package && cross-env TEST_MODE=live npm run vitest:node", "update-snippets": "dev-tool run update-snippets", "vitest:node": "dev-tool run test:vitest --no-test-proxy" }, @@ -130,12 +130,17 @@ "chai-as-promised": "catalog:testing", "chai-exclude": "catalog:testing", "copyfiles": "^2.4.1", + "cross-env": "catalog:", "debug": "^4.4.0", "dotenv": "catalog:testing", "eslint": "catalog:", "https-proxy-agent": "^7.0.0", "node-forge": "^1.3.1", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "tsx": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing", "ws": "^8.2.0" diff --git a/sdk/eventhub/event-hubs/samples/v5/javascript/README.md b/sdk/eventhub/event-hubs/samples/v5/javascript/README.md index 7098e791008c..e417349a979d 100644 --- a/sdk/eventhub/event-hubs/samples/v5/javascript/README.md +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/README.md @@ -56,7 +56,7 @@ node sendBufferedEvents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node sendBufferedEvents.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node sendBufferedEvents.js ``` ## Next Steps diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/README.md b/sdk/eventhub/event-hubs/samples/v5/typescript/README.md index 6b34e1082a2a..5ad7283d22b4 100644 --- a/sdk/eventhub/event-hubs/samples/v5/typescript/README.md +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/README.md @@ -68,7 +68,7 @@ node dist/sendBufferedEvents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node dist/sendBufferedEvents.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node dist/sendBufferedEvents.js ``` ## Next Steps diff --git a/sdk/eventhub/event-hubs/samples/v6/javascript/README.md b/sdk/eventhub/event-hubs/samples/v6/javascript/README.md index 641f8872f591..a3f66246785e 100644 --- a/sdk/eventhub/event-hubs/samples/v6/javascript/README.md +++ b/sdk/eventhub/event-hubs/samples/v6/javascript/README.md @@ -56,7 +56,7 @@ node sendBufferedEvents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node sendBufferedEvents.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node sendBufferedEvents.js ``` ## Next Steps diff --git a/sdk/eventhub/event-hubs/samples/v6/typescript/README.md b/sdk/eventhub/event-hubs/samples/v6/typescript/README.md index 3524e7a58167..83f736bcc9bd 100644 --- a/sdk/eventhub/event-hubs/samples/v6/typescript/README.md +++ b/sdk/eventhub/event-hubs/samples/v6/typescript/README.md @@ -68,7 +68,7 @@ node dist/sendBufferedEvents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node dist/sendBufferedEvents.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node dist/sendBufferedEvents.js ``` ## Next Steps diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/package.json b/sdk/eventhub/eventhubs-checkpointstore-blob/package.json index 0ed563c4cc04..69c7bc03e0b3 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/package.json +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/package.json @@ -33,11 +33,11 @@ "build:samples": "tsc -p tsconfig.samples.json", "build:test:browser": "dev-tool run build-package && dev-tool run build-test", "build:test:node": "dev-tool run build-package && dev-tool run build-test", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "clean": "rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -88,12 +88,16 @@ "buffer": "^6.0.3", "chai": "catalog:testing", "chai-as-promised": "catalog:testing", + "cross-env": "catalog:", "debug": "^4.3.6", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", "process": "^0.11.10", + "rimraf": "catalog:", "stream": "^0.0.3", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/javascript/README.md b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/javascript/README.md index 5f6f72035feb..4f183204582d 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/javascript/README.md +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/javascript/README.md @@ -51,7 +51,7 @@ node receiveEventsUsingCheckpointStore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP="" STORAGE_CONTAINER_URL="" node receiveEventsUsingCheckpointStore.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP="" STORAGE_CONTAINER_URL="" node receiveEventsUsingCheckpointStore.js ``` ## Next Steps diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/README.md b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/README.md index 9dee6d5e4222..1c08fd863ae0 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/README.md +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/README.md @@ -63,7 +63,7 @@ node dist/receiveEventsUsingCheckpointStore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP="" STORAGE_CONTAINER_URL="" node dist/receiveEventsUsingCheckpointStore.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP="" STORAGE_CONTAINER_URL="" node dist/receiveEventsUsingCheckpointStore.js ``` ## Next Steps diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/javascript/README.md b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/javascript/README.md index d9095bfa476e..dd526359e043 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/javascript/README.md +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/javascript/README.md @@ -51,7 +51,7 @@ node receiveEventsUsingCheckpointStore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP_NAME="" STORAGE_ENDPOINT="" node receiveEventsUsingCheckpointStore.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP_NAME="" STORAGE_ENDPOINT="" node receiveEventsUsingCheckpointStore.js ``` ## Next Steps diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/typescript/README.md b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/typescript/README.md index 00c315f062e5..062e05db7ea0 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/typescript/README.md +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/typescript/README.md @@ -63,7 +63,7 @@ node dist/receiveEventsUsingCheckpointStore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP_NAME="" STORAGE_ENDPOINT="" node dist/receiveEventsUsingCheckpointStore.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP_NAME="" STORAGE_ENDPOINT="" node dist/receiveEventsUsingCheckpointStore.js ``` ## Next Steps diff --git a/sdk/eventhub/eventhubs-checkpointstore-table/package.json b/sdk/eventhub/eventhubs-checkpointstore-table/package.json index c2472efc2331..6a24ad0768cc 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-table/package.json +++ b/sdk/eventhub/eventhubs-checkpointstore-table/package.json @@ -33,11 +33,11 @@ "build:samples": "echo Skipped.", "build:test:browser": "dev-tool run build-package && dev-tool run build-test", "build:test:node": "dev-tool run build-package && dev-tool run build-test", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "clean": "rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -85,12 +85,16 @@ "buffer": "^6.0.3", "chai": "catalog:testing", "chai-as-promised": "catalog:testing", + "cross-env": "catalog:", "debug": "^4.1.1", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", "process": "^0.11.10", + "rimraf": "catalog:", "stream": "^0.0.3", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventhub/mock-hub/package.json b/sdk/eventhub/mock-hub/package.json index 1307592f8b32..6c5c3584bc5b 100644 --- a/sdk/eventhub/mock-hub/package.json +++ b/sdk/eventhub/mock-hub/package.json @@ -16,11 +16,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "clean": "rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "tsc -p . && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -60,9 +60,13 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventhub/mock-hub/samples/v1/javascript/README.md b/sdk/eventhub/mock-hub/samples/v1/javascript/README.md index 64474a21320f..46461ae3cfaa 100644 --- a/sdk/eventhub/mock-hub/samples/v1/javascript/README.md +++ b/sdk/eventhub/mock-hub/samples/v1/javascript/README.md @@ -49,7 +49,7 @@ node start.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CERT_PASSPHRASE="" node start.js +cross-env CERT_PASSPHRASE="" node start.js ``` ## Next Steps diff --git a/sdk/eventhub/mock-hub/samples/v1/typescript/README.md b/sdk/eventhub/mock-hub/samples/v1/typescript/README.md index 625ff4fac548..13c9edf93142 100644 --- a/sdk/eventhub/mock-hub/samples/v1/typescript/README.md +++ b/sdk/eventhub/mock-hub/samples/v1/typescript/README.md @@ -61,7 +61,7 @@ node dist/start.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CERT_PASSPHRASE="" node dist/start.js +cross-env CERT_PASSPHRASE="" node dist/start.js ``` ## Next Steps diff --git a/sdk/extendedlocation/arm-extendedlocation/package.json b/sdk/extendedlocation/arm-extendedlocation/package.json index 83af0e183b62..82f385aa9922 100644 --- a/sdk/extendedlocation/arm-extendedlocation/package.json +++ b/sdk/extendedlocation/arm-extendedlocation/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/javascript/README.md b/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/javascript/README.md index 171d0fe9556a..fe66fb09ec02 100644 --- a/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/javascript/README.md +++ b/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/javascript/README.md @@ -50,7 +50,7 @@ node customLocationsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EXTENDEDLOCATION_SUBSCRIPTION_ID="" EXTENDEDLOCATION_RESOURCE_GROUP="" node customLocationsCreateOrUpdateSample.js +cross-env EXTENDEDLOCATION_SUBSCRIPTION_ID="" EXTENDEDLOCATION_RESOURCE_GROUP="" node customLocationsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/typescript/README.md b/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/typescript/README.md index 27d4d388bdaa..44a169d171bb 100644 --- a/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/typescript/README.md +++ b/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/typescript/README.md @@ -62,7 +62,7 @@ node dist/customLocationsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EXTENDEDLOCATION_SUBSCRIPTION_ID="" EXTENDEDLOCATION_RESOURCE_GROUP="" node dist/customLocationsCreateOrUpdateSample.js +cross-env EXTENDEDLOCATION_SUBSCRIPTION_ID="" EXTENDEDLOCATION_RESOURCE_GROUP="" node dist/customLocationsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/fabric/arm-fabric/package.json b/sdk/fabric/arm-fabric/package.json index 3d228fe95569..d784075772f6 100644 --- a/sdk/fabric/arm-fabric/package.json +++ b/sdk/fabric/arm-fabric/package.json @@ -76,21 +76,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", "prettier": "^3.2.5", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/fabric/arm-fabric/samples/v1-beta/javascript/README.md b/sdk/fabric/arm-fabric/samples/v1-beta/javascript/README.md index a64ed4700c1c..ad239c0f2bf1 100644 --- a/sdk/fabric/arm-fabric/samples/v1-beta/javascript/README.md +++ b/sdk/fabric/arm-fabric/samples/v1-beta/javascript/README.md @@ -48,7 +48,7 @@ node fabricCapacitiesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node fabricCapacitiesCheckNameAvailabilitySample.js +cross-env node fabricCapacitiesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/fabric/arm-fabric/samples/v1-beta/typescript/README.md b/sdk/fabric/arm-fabric/samples/v1-beta/typescript/README.md index e5d08af87d5c..77e4156cbd51 100644 --- a/sdk/fabric/arm-fabric/samples/v1-beta/typescript/README.md +++ b/sdk/fabric/arm-fabric/samples/v1-beta/typescript/README.md @@ -60,7 +60,7 @@ node dist/fabricCapacitiesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/fabricCapacitiesCheckNameAvailabilitySample.js +cross-env node dist/fabricCapacitiesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/fabric/arm-fabric/samples/v1/javascript/README.md b/sdk/fabric/arm-fabric/samples/v1/javascript/README.md index 7a3cf7d7fa81..1e938ee10412 100644 --- a/sdk/fabric/arm-fabric/samples/v1/javascript/README.md +++ b/sdk/fabric/arm-fabric/samples/v1/javascript/README.md @@ -48,7 +48,7 @@ node fabricCapacitiesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node fabricCapacitiesCheckNameAvailabilitySample.js +cross-env node fabricCapacitiesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/fabric/arm-fabric/samples/v1/typescript/README.md b/sdk/fabric/arm-fabric/samples/v1/typescript/README.md index 8db061f8f73e..a2d44023509d 100644 --- a/sdk/fabric/arm-fabric/samples/v1/typescript/README.md +++ b/sdk/fabric/arm-fabric/samples/v1/typescript/README.md @@ -60,7 +60,7 @@ node dist/fabricCapacitiesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/fabricCapacitiesCheckNameAvailabilitySample.js +cross-env node dist/fabricCapacitiesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/face/ai-vision-face-rest/package.json b/sdk/face/ai-vision-face-rest/package.json index 3eb1cc66034c..5b150b74a027 100644 --- a/sdk/face/ai-vision-face-rest/package.json +++ b/sdk/face/ai-vision-face-rest/package.json @@ -75,21 +75,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", "prettier": "^3.2.5", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/face/ai-vision-face-rest/samples/v1-beta/javascript/README.md b/sdk/face/ai-vision-face-rest/samples/v1-beta/javascript/README.md index 9fc0d32d60fe..e39552375e0c 100644 --- a/sdk/face/ai-vision-face-rest/samples/v1-beta/javascript/README.md +++ b/sdk/face/ai-vision-face-rest/samples/v1-beta/javascript/README.md @@ -42,7 +42,7 @@ node aadAuth.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FACE_ENDPOINT="" node aadAuth.js +cross-env FACE_ENDPOINT="" node aadAuth.js ``` ## Next Steps diff --git a/sdk/face/ai-vision-face-rest/samples/v1-beta/typescript/README.md b/sdk/face/ai-vision-face-rest/samples/v1-beta/typescript/README.md index a59644f09f92..7d9589f839c7 100644 --- a/sdk/face/ai-vision-face-rest/samples/v1-beta/typescript/README.md +++ b/sdk/face/ai-vision-face-rest/samples/v1-beta/typescript/README.md @@ -54,7 +54,7 @@ node dist/aadAuth.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FACE_ENDPOINT="" node dist/aadAuth.js +cross-env FACE_ENDPOINT="" node dist/aadAuth.js ``` ## Next Steps diff --git a/sdk/features/arm-features/package.json b/sdk/features/arm-features/package.json index 363cd984a58c..bd70a5bb5676 100644 --- a/sdk/features/arm-features/package.json +++ b/sdk/features/arm-features/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/features/arm-features/samples/v3/javascript/README.md b/sdk/features/arm-features/samples/v3/javascript/README.md index 28ff1f0eb265..1072d7dfb562 100644 --- a/sdk/features/arm-features/samples/v3/javascript/README.md +++ b/sdk/features/arm-features/samples/v3/javascript/README.md @@ -47,7 +47,7 @@ node featuresGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node featuresGetSample.js +cross-env node featuresGetSample.js ``` ## Next Steps diff --git a/sdk/features/arm-features/samples/v3/typescript/README.md b/sdk/features/arm-features/samples/v3/typescript/README.md index e73df4752d39..793ae865f93d 100644 --- a/sdk/features/arm-features/samples/v3/typescript/README.md +++ b/sdk/features/arm-features/samples/v3/typescript/README.md @@ -59,7 +59,7 @@ node dist/featuresGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/featuresGetSample.js +cross-env node dist/featuresGetSample.js ``` ## Next Steps diff --git a/sdk/fluidrelay/arm-fluidrelay/package.json b/sdk/fluidrelay/arm-fluidrelay/package.json index 1106d9fbb5b2..e1e237834523 100644 --- a/sdk/fluidrelay/arm-fluidrelay/package.json +++ b/sdk/fluidrelay/arm-fluidrelay/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/fluidrelay/arm-fluidrelay/samples/v1/javascript/README.md b/sdk/fluidrelay/arm-fluidrelay/samples/v1/javascript/README.md index 997ca93a1a23..3df46c0c263e 100644 --- a/sdk/fluidrelay/arm-fluidrelay/samples/v1/javascript/README.md +++ b/sdk/fluidrelay/arm-fluidrelay/samples/v1/javascript/README.md @@ -48,7 +48,7 @@ node fluidRelayContainersDeleteSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FLUIDRELAY_SUBSCRIPTION_ID="" node fluidRelayContainersDeleteSample.js +cross-env FLUIDRELAY_SUBSCRIPTION_ID="" node fluidRelayContainersDeleteSample.js ``` ## Next Steps diff --git a/sdk/fluidrelay/arm-fluidrelay/samples/v1/typescript/README.md b/sdk/fluidrelay/arm-fluidrelay/samples/v1/typescript/README.md index bca1e4779b82..ec05f7bc7e4d 100644 --- a/sdk/fluidrelay/arm-fluidrelay/samples/v1/typescript/README.md +++ b/sdk/fluidrelay/arm-fluidrelay/samples/v1/typescript/README.md @@ -60,7 +60,7 @@ node dist/fluidRelayContainersDeleteSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FLUIDRELAY_SUBSCRIPTION_ID="" node dist/fluidRelayContainersDeleteSample.js +cross-env FLUIDRELAY_SUBSCRIPTION_ID="" node dist/fluidRelayContainersDeleteSample.js ``` ## Next Steps diff --git a/sdk/formrecognizer/ai-form-recognizer-perf-tests/package.json b/sdk/formrecognizer/ai-form-recognizer-perf-tests/package.json index 43dd4ced7141..53ec19a850a4 100644 --- a/sdk/formrecognizer/ai-form-recognizer-perf-tests/package.json +++ b/sdk/formrecognizer/ai-form-recognizer-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/formrecognizer/ai-form-recognizer/package.json b/sdk/formrecognizer/ai-form-recognizer/package.json index ce22414ae6fa..f93f8aff9068 100644 --- a/sdk/formrecognizer/ai-form-recognizer/package.json +++ b/sdk/formrecognizer/ai-form-recognizer/package.json @@ -49,11 +49,11 @@ "build": "npm run clean && dev-tool run build-package && npm run bundle:bin && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "bundle:bin": "rollup -c rollup.config.bin.mjs 2>&1", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log test-results.*xml", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log test-results.*xml", "execute:samples": "dev-tool samples run samples-dev/", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -90,12 +90,15 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "magic-string": "~0.30.10", "playwright": "catalog:testing", "prettier": "^3.3.3", + "rimraf": "catalog:", "rollup": "^4.0.0", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/formrecognizer/ai-form-recognizer/samples/v5/javascript/README.md b/sdk/formrecognizer/ai-form-recognizer/samples/v5/javascript/README.md index 8c4f65746319..effe53fa725a 100644 --- a/sdk/formrecognizer/ai-form-recognizer/samples/v5/javascript/README.md +++ b/sdk/formrecognizer/ai-form-recognizer/samples/v5/javascript/README.md @@ -62,7 +62,7 @@ node composeModel.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FORM_RECOGNIZER_ENDPOINT="
" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node composeModel.js +cross-env FORM_RECOGNIZER_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node composeModel.js ``` ## Next Steps diff --git a/sdk/formrecognizer/ai-form-recognizer/samples/v5/typescript/README.md b/sdk/formrecognizer/ai-form-recognizer/samples/v5/typescript/README.md index 860d8574052f..9a5cd74994ba 100644 --- a/sdk/formrecognizer/ai-form-recognizer/samples/v5/typescript/README.md +++ b/sdk/formrecognizer/ai-form-recognizer/samples/v5/typescript/README.md @@ -81,7 +81,7 @@ node dist/composeModel.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FORM_RECOGNIZER_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node dist/composeModel.js +cross-env FORM_RECOGNIZER_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node dist/composeModel.js ``` ## Next Steps diff --git a/sdk/frontdoor/arm-frontdoor/package.json b/sdk/frontdoor/arm-frontdoor/package.json index 8d73cbeed534..ff671db3530a 100644 --- a/sdk/frontdoor/arm-frontdoor/package.json +++ b/sdk/frontdoor/arm-frontdoor/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/frontdoor/arm-frontdoor/samples/v5/javascript/README.md b/sdk/frontdoor/arm-frontdoor/samples/v5/javascript/README.md index f0db738fc0e2..60e1be89b506 100644 --- a/sdk/frontdoor/arm-frontdoor/samples/v5/javascript/README.md +++ b/sdk/frontdoor/arm-frontdoor/samples/v5/javascript/README.md @@ -74,7 +74,7 @@ node endpointsPurgeContentSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FRONTDOOR_SUBSCRIPTION_ID="" FRONTDOOR_RESOURCE_GROUP="" node endpointsPurgeContentSample.js +cross-env FRONTDOOR_SUBSCRIPTION_ID="" FRONTDOOR_RESOURCE_GROUP="" node endpointsPurgeContentSample.js ``` ## Next Steps diff --git a/sdk/frontdoor/arm-frontdoor/samples/v5/typescript/README.md b/sdk/frontdoor/arm-frontdoor/samples/v5/typescript/README.md index ccd88cb1f9f8..17674365c8f3 100644 --- a/sdk/frontdoor/arm-frontdoor/samples/v5/typescript/README.md +++ b/sdk/frontdoor/arm-frontdoor/samples/v5/typescript/README.md @@ -86,7 +86,7 @@ node dist/endpointsPurgeContentSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FRONTDOOR_SUBSCRIPTION_ID="" FRONTDOOR_RESOURCE_GROUP="" node dist/endpointsPurgeContentSample.js +cross-env FRONTDOOR_SUBSCRIPTION_ID="" FRONTDOOR_RESOURCE_GROUP="" node dist/endpointsPurgeContentSample.js ``` ## Next Steps diff --git a/sdk/graphservices/arm-graphservices/package.json b/sdk/graphservices/arm-graphservices/package.json index 2e0640f539f7..c85231ea5708 100644 --- a/sdk/graphservices/arm-graphservices/package.json +++ b/sdk/graphservices/arm-graphservices/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/graphservices/arm-graphservices/samples/v1/javascript/README.md b/sdk/graphservices/arm-graphservices/samples/v1/javascript/README.md index 8aa95a7fe68c..ab93eb7d3f43 100644 --- a/sdk/graphservices/arm-graphservices/samples/v1/javascript/README.md +++ b/sdk/graphservices/arm-graphservices/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node accountsCreateAndUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env GRAPHSERVICES_SUBSCRIPTION_ID="" GRAPHSERVICES_RESOURCE_GROUP="" node accountsCreateAndUpdateSample.js +cross-env GRAPHSERVICES_SUBSCRIPTION_ID="" GRAPHSERVICES_RESOURCE_GROUP="" node accountsCreateAndUpdateSample.js ``` ## Next Steps diff --git a/sdk/graphservices/arm-graphservices/samples/v1/typescript/README.md b/sdk/graphservices/arm-graphservices/samples/v1/typescript/README.md index 98e536cc993b..b64123fd57e9 100644 --- a/sdk/graphservices/arm-graphservices/samples/v1/typescript/README.md +++ b/sdk/graphservices/arm-graphservices/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/accountsCreateAndUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env GRAPHSERVICES_SUBSCRIPTION_ID="" GRAPHSERVICES_RESOURCE_GROUP="" node dist/accountsCreateAndUpdateSample.js +cross-env GRAPHSERVICES_SUBSCRIPTION_ID="" GRAPHSERVICES_RESOURCE_GROUP="" node dist/accountsCreateAndUpdateSample.js ``` ## Next Steps diff --git a/sdk/guestconfiguration/arm-guestconfiguration/package.json b/sdk/guestconfiguration/arm-guestconfiguration/package.json index 288f645ba4cc..9798afc4cad5 100644 --- a/sdk/guestconfiguration/arm-guestconfiguration/package.json +++ b/sdk/guestconfiguration/arm-guestconfiguration/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/javascript/README.md b/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/javascript/README.md index 2039b5ba55e5..ec6baf83ee8b 100644 --- a/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/javascript/README.md +++ b/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/javascript/README.md @@ -63,7 +63,7 @@ node guestConfigurationAssignmentReportsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env GUESTCONFIGURATION_SUBSCRIPTION_ID="" GUESTCONFIGURATION_RESOURCE_GROUP="" node guestConfigurationAssignmentReportsGetSample.js +cross-env GUESTCONFIGURATION_SUBSCRIPTION_ID="" GUESTCONFIGURATION_RESOURCE_GROUP="" node guestConfigurationAssignmentReportsGetSample.js ``` ## Next Steps diff --git a/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/typescript/README.md b/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/typescript/README.md index c2ae07eb3d4e..8dd3f67ca0b6 100644 --- a/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/typescript/README.md +++ b/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/typescript/README.md @@ -75,7 +75,7 @@ node dist/guestConfigurationAssignmentReportsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env GUESTCONFIGURATION_SUBSCRIPTION_ID="" GUESTCONFIGURATION_RESOURCE_GROUP="" node dist/guestConfigurationAssignmentReportsGetSample.js +cross-env GUESTCONFIGURATION_SUBSCRIPTION_ID="" GUESTCONFIGURATION_RESOURCE_GROUP="" node dist/guestConfigurationAssignmentReportsGetSample.js ``` ## Next Steps diff --git a/sdk/hanaonazure/arm-hanaonazure/package.json b/sdk/hanaonazure/arm-hanaonazure/package.json index 97e99dd1fdbc..f439fefc887c 100644 --- a/sdk/hanaonazure/arm-hanaonazure/package.json +++ b/sdk/hanaonazure/arm-hanaonazure/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/javascript/README.md b/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/javascript/README.md index 24773cb86d58..f81bf625bac6 100644 --- a/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/javascript/README.md +++ b/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/javascript/README.md @@ -46,7 +46,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/typescript/README.md b/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/typescript/README.md index a13c51ea1d9d..a376cd68b345 100644 --- a/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/typescript/README.md +++ b/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/typescript/README.md @@ -58,7 +58,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/package.json b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/package.json index a081d5529907..b769bca95f33 100644 --- a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/package.json +++ b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/package.json @@ -70,12 +70,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.11.0", "@azure-rest/core-client": "^2.1.0", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.0.0", "@azure/core-rest-pipeline": "^1.18.2", + "@azure/core-util": "^1.11.0", "@azure/logger": "^1.1.4", "tslib": "^2.8.1" }, @@ -89,20 +89,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/javascript/README.md b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/javascript/README.md index 8fc930a6cb71..e8118358e1dc 100644 --- a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/javascript/README.md +++ b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/javascript/README.md @@ -61,7 +61,7 @@ node cloudHsmClusterBackupStatusGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node cloudHsmClusterBackupStatusGetSample.js +cross-env node cloudHsmClusterBackupStatusGetSample.js ``` ## Next Steps diff --git a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/typescript/README.md b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/typescript/README.md index bc5304f878d5..84d16fe4e497 100644 --- a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/typescript/README.md +++ b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/typescript/README.md @@ -73,7 +73,7 @@ node dist/cloudHsmClusterBackupStatusGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/cloudHsmClusterBackupStatusGetSample.js +cross-env node dist/cloudHsmClusterBackupStatusGetSample.js ``` ## Next Steps diff --git a/sdk/hdinsight/arm-hdinsight/package.json b/sdk/hdinsight/arm-hdinsight/package.json index 64b6ca03b11a..b3d9cb2a69a9 100644 --- a/sdk/hdinsight/arm-hdinsight/package.json +++ b/sdk/hdinsight/arm-hdinsight/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hdinsight/arm-hdinsight/samples/v1-beta/javascript/README.md b/sdk/hdinsight/arm-hdinsight/samples/v1-beta/javascript/README.md index c6eeb7bc0435..152a38d9aa7f 100644 --- a/sdk/hdinsight/arm-hdinsight/samples/v1-beta/javascript/README.md +++ b/sdk/hdinsight/arm-hdinsight/samples/v1-beta/javascript/README.md @@ -93,7 +93,7 @@ node applicationsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HDINSIGHT_SUBSCRIPTION_ID="" HDINSIGHT_RESOURCE_GROUP="" node applicationsCreateSample.js +cross-env HDINSIGHT_SUBSCRIPTION_ID="" HDINSIGHT_RESOURCE_GROUP="" node applicationsCreateSample.js ``` ## Next Steps diff --git a/sdk/hdinsight/arm-hdinsight/samples/v1-beta/typescript/README.md b/sdk/hdinsight/arm-hdinsight/samples/v1-beta/typescript/README.md index 28afd4a784d7..f068d44d24d9 100644 --- a/sdk/hdinsight/arm-hdinsight/samples/v1-beta/typescript/README.md +++ b/sdk/hdinsight/arm-hdinsight/samples/v1-beta/typescript/README.md @@ -105,7 +105,7 @@ node dist/applicationsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HDINSIGHT_SUBSCRIPTION_ID="" HDINSIGHT_RESOURCE_GROUP="" node dist/applicationsCreateSample.js +cross-env HDINSIGHT_SUBSCRIPTION_ID="" HDINSIGHT_RESOURCE_GROUP="" node dist/applicationsCreateSample.js ``` ## Next Steps diff --git a/sdk/hdinsight/arm-hdinsightcontainers/package.json b/sdk/hdinsight/arm-hdinsightcontainers/package.json index 34d2fcf8d272..4a9e5ae2b1be 100644 --- a/sdk/hdinsight/arm-hdinsightcontainers/package.json +++ b/sdk/hdinsight/arm-hdinsightcontainers/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/javascript/README.md b/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/javascript/README.md index 799ac14a707c..b430221b9418 100644 --- a/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/javascript/README.md +++ b/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/javascript/README.md @@ -66,7 +66,7 @@ node availableClusterPoolVersionsListByLocationSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HDINSIGHT_SUBSCRIPTION_ID="" node availableClusterPoolVersionsListByLocationSample.js +cross-env HDINSIGHT_SUBSCRIPTION_ID="" node availableClusterPoolVersionsListByLocationSample.js ``` ## Next Steps diff --git a/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/typescript/README.md b/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/typescript/README.md index d3cfb743a20b..c424e9990dab 100644 --- a/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/typescript/README.md +++ b/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/typescript/README.md @@ -78,7 +78,7 @@ node dist/availableClusterPoolVersionsListByLocationSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HDINSIGHT_SUBSCRIPTION_ID="" node dist/availableClusterPoolVersionsListByLocationSample.js +cross-env HDINSIGHT_SUBSCRIPTION_ID="" node dist/availableClusterPoolVersionsListByLocationSample.js ``` ## Next Steps diff --git a/sdk/healthbot/arm-healthbot/package.json b/sdk/healthbot/arm-healthbot/package.json index ad61892c8eb7..048b6e339f23 100644 --- a/sdk/healthbot/arm-healthbot/package.json +++ b/sdk/healthbot/arm-healthbot/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/healthbot/arm-healthbot/samples/v2/javascript/README.md b/sdk/healthbot/arm-healthbot/samples/v2/javascript/README.md index dca08a83a260..41d67aee35cb 100644 --- a/sdk/healthbot/arm-healthbot/samples/v2/javascript/README.md +++ b/sdk/healthbot/arm-healthbot/samples/v2/javascript/README.md @@ -43,7 +43,7 @@ node botsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node botsCreateSample.js +cross-env node botsCreateSample.js ``` ## Next Steps diff --git a/sdk/healthbot/arm-healthbot/samples/v2/typescript/README.md b/sdk/healthbot/arm-healthbot/samples/v2/typescript/README.md index d6863ee04d37..872dfbabda08 100644 --- a/sdk/healthbot/arm-healthbot/samples/v2/typescript/README.md +++ b/sdk/healthbot/arm-healthbot/samples/v2/typescript/README.md @@ -55,7 +55,7 @@ node dist/botsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/botsCreateSample.js +cross-env node dist/botsCreateSample.js ``` ## Next Steps diff --git a/sdk/healthcareapis/arm-healthcareapis/package.json b/sdk/healthcareapis/arm-healthcareapis/package.json index fe8f645834ce..adcd8c74064b 100644 --- a/sdk/healthcareapis/arm-healthcareapis/package.json +++ b/sdk/healthcareapis/arm-healthcareapis/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/healthcareapis/arm-healthcareapis/samples/v3/javascript/README.md b/sdk/healthcareapis/arm-healthcareapis/samples/v3/javascript/README.md index 6b2f36d67140..3aef5adca192 100644 --- a/sdk/healthcareapis/arm-healthcareapis/samples/v3/javascript/README.md +++ b/sdk/healthcareapis/arm-healthcareapis/samples/v3/javascript/README.md @@ -82,7 +82,7 @@ node dicomServicesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTHCAREAPIS_SUBSCRIPTION_ID="" HEALTHCAREAPIS_RESOURCE_GROUP="" node dicomServicesCreateOrUpdateSample.js +cross-env HEALTHCAREAPIS_SUBSCRIPTION_ID="" HEALTHCAREAPIS_RESOURCE_GROUP="" node dicomServicesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/healthcareapis/arm-healthcareapis/samples/v3/typescript/README.md b/sdk/healthcareapis/arm-healthcareapis/samples/v3/typescript/README.md index 267d303c0945..f4758484252d 100644 --- a/sdk/healthcareapis/arm-healthcareapis/samples/v3/typescript/README.md +++ b/sdk/healthcareapis/arm-healthcareapis/samples/v3/typescript/README.md @@ -94,7 +94,7 @@ node dist/dicomServicesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTHCAREAPIS_SUBSCRIPTION_ID="" HEALTHCAREAPIS_RESOURCE_GROUP="" node dist/dicomServicesCreateOrUpdateSample.js +cross-env HEALTHCAREAPIS_SUBSCRIPTION_ID="" HEALTHCAREAPIS_RESOURCE_GROUP="" node dist/dicomServicesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/healthdataaiservices/arm-healthdataaiservices/package.json b/sdk/healthdataaiservices/arm-healthdataaiservices/package.json index ae3a3bb4ee4e..f7c14ce0a385 100644 --- a/sdk/healthdataaiservices/arm-healthdataaiservices/package.json +++ b/sdk/healthdataaiservices/arm-healthdataaiservices/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/javascript/README.md b/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/javascript/README.md index 34fc92f9e802..c4edbe574ef5 100644 --- a/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/javascript/README.md +++ b/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/javascript/README.md @@ -48,7 +48,7 @@ node deidServicesCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node deidServicesCreateSample.js +cross-env node deidServicesCreateSample.js ``` ## Next Steps diff --git a/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/typescript/README.md b/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/typescript/README.md index cfe28a8dc14d..b776c181a1cf 100644 --- a/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/typescript/README.md +++ b/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/typescript/README.md @@ -60,7 +60,7 @@ node dist/deidServicesCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/deidServicesCreateSample.js +cross-env node dist/deidServicesCreateSample.js ``` ## Next Steps diff --git a/sdk/healthdataaiservices/health-deidentification-rest/package.json b/sdk/healthdataaiservices/health-deidentification-rest/package.json index 5fc3304767e2..49a564e53231 100644 --- a/sdk/healthdataaiservices/health-deidentification-rest/package.json +++ b/sdk/healthdataaiservices/health-deidentification-rest/package.json @@ -77,28 +77,32 @@ "@types/node": "^20.0.0", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "eslint package.json src test", - "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo skipped", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", + "extract-api": "rimraf review && dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "exports": { diff --git a/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/javascript/README.md b/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/javascript/README.md index 10debd69baa6..a7c70a2c9fae 100644 --- a/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/javascript/README.md +++ b/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/javascript/README.md @@ -42,7 +42,7 @@ node createJob.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTHDATAAISERVICES_DEID_SERVICE_ENDPOINT="" HEALTHDATAAISERVICES_STORAGE_ACCOUNT_LOCATION="" OUTPUT_PREFIX="" node createJob.js +cross-env HEALTHDATAAISERVICES_DEID_SERVICE_ENDPOINT="" HEALTHDATAAISERVICES_STORAGE_ACCOUNT_LOCATION="" OUTPUT_PREFIX="" node createJob.js ``` ## Next Steps diff --git a/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/typescript/README.md b/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/typescript/README.md index 606a287343ae..3680c50515ca 100644 --- a/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/typescript/README.md +++ b/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/typescript/README.md @@ -54,7 +54,7 @@ node dist/createJob.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTHDATAAISERVICES_DEID_SERVICE_ENDPOINT="" HEALTHDATAAISERVICES_STORAGE_ACCOUNT_LOCATION="" OUTPUT_PREFIX="" node dist/createJob.js +cross-env HEALTHDATAAISERVICES_DEID_SERVICE_ENDPOINT="" HEALTHDATAAISERVICES_STORAGE_ACCOUNT_LOCATION="" OUTPUT_PREFIX="" node dist/createJob.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-cancerprofiling-rest/package.json b/sdk/healthinsights/health-insights-cancerprofiling-rest/package.json index 29c8103a055d..fd134a8cc14a 100644 --- a/sdk/healthinsights/health-insights-cancerprofiling-rest/package.json +++ b/sdk/healthinsights/health-insights-cancerprofiling-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/javascript/README.md b/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/javascript/README.md index a428ac3097d2..7d5cddb11179 100644 --- a/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/javascript/README.md +++ b/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/javascript/README.md @@ -37,7 +37,7 @@ node sample_infer_cancer_profiling.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_ENDPOINT="" HEALTH_INSIGHTS_API_KEY="" node sample_infer_cancer_profiling.js +cross-env HEALTH_INSIGHTS_ENDPOINT="" HEALTH_INSIGHTS_API_KEY="" node sample_infer_cancer_profiling.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/typescript/README.md b/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/typescript/README.md index adc3a79bf3b7..0d98d8e8b088 100644 --- a/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/typescript/README.md +++ b/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/typescript/README.md @@ -49,7 +49,7 @@ node dist/sample_infer_cancer_profiling.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_ENDPOINT="" HEALTH_INSIGHTS_API_KEY="" node dist/sample_infer_cancer_profiling.js +cross-env HEALTH_INSIGHTS_ENDPOINT="" HEALTH_INSIGHTS_API_KEY="" node dist/sample_infer_cancer_profiling.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-clinicalmatching-rest/package.json b/sdk/healthinsights/health-insights-clinicalmatching-rest/package.json index b96173a8d6ea..5cf6ae8d969b 100644 --- a/sdk/healthinsights/health-insights-clinicalmatching-rest/package.json +++ b/sdk/healthinsights/health-insights-clinicalmatching-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/javascript/README.md b/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/javascript/README.md index e755cd68f0fa..2ea3c21d0c0b 100644 --- a/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/javascript/README.md +++ b/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/javascript/README.md @@ -39,7 +39,7 @@ node sample_match_trials_fhir.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node sample_match_trials_fhir.js +cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node sample_match_trials_fhir.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/typescript/README.md b/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/typescript/README.md index 527e4b615de5..fc818455c0b6 100644 --- a/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/typescript/README.md +++ b/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/typescript/README.md @@ -51,7 +51,7 @@ node dist/sample_match_trials_fhir.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node dist/sample_match_trials_fhir.js +cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node dist/sample_match_trials_fhir.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-radiologyinsights-rest/package.json b/sdk/healthinsights/health-insights-radiologyinsights-rest/package.json index cac91a0b02b1..5f8c294d6030 100644 --- a/sdk/healthinsights/health-insights-radiologyinsights-rest/package.json +++ b/sdk/healthinsights/health-insights-radiologyinsights-rest/package.json @@ -34,11 +34,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "build:test": "echo skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -70,9 +70,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/javascript/README.md b/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/javascript/README.md index e62ca8902cd6..ac498990b1ee 100644 --- a/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/javascript/README.md +++ b/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/javascript/README.md @@ -50,7 +50,7 @@ node sample_age_mismatch_inference_async.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node sample_critical_result_inference_async.js +cross-env HEALTH_INSIGHTS_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node sample_critical_result_inference_async.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/typescript/README.md b/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/typescript/README.md index bb561e0b11f6..1273f08b0865 100644 --- a/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/typescript/README.md +++ b/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/typescript/README.md @@ -62,7 +62,7 @@ node dist/sample_age_mismatch_inference_async.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node dist/sample_critical_result_inference_async.js +cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node dist/sample_critical_result_inference_async.js ``` ## Next Steps diff --git a/sdk/hybridcompute/arm-hybridcompute/package.json b/sdk/hybridcompute/arm-hybridcompute/package.json index 6b96f6a94911..0aaffbe8aa30 100644 --- a/sdk/hybridcompute/arm-hybridcompute/package.json +++ b/sdk/hybridcompute/arm-hybridcompute/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/javascript/README.md b/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/javascript/README.md index f4fe72922854..231e4e68248b 100644 --- a/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/javascript/README.md +++ b/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/javascript/README.md @@ -99,7 +99,7 @@ node extensionMetadataGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDCOMPUTE_SUBSCRIPTION_ID="" node extensionMetadataGetSample.js +cross-env HYBRIDCOMPUTE_SUBSCRIPTION_ID="" node extensionMetadataGetSample.js ``` ## Next Steps diff --git a/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/typescript/README.md b/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/typescript/README.md index 04e647648500..76ec02382976 100644 --- a/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/typescript/README.md +++ b/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/typescript/README.md @@ -111,7 +111,7 @@ node dist/extensionMetadataGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDCOMPUTE_SUBSCRIPTION_ID="" node dist/extensionMetadataGetSample.js +cross-env HYBRIDCOMPUTE_SUBSCRIPTION_ID="" node dist/extensionMetadataGetSample.js ``` ## Next Steps diff --git a/sdk/hybridconnectivity/arm-hybridconnectivity/package.json b/sdk/hybridconnectivity/arm-hybridconnectivity/package.json index 35574c0f69eb..e2a6acb0467c 100644 --- a/sdk/hybridconnectivity/arm-hybridconnectivity/package.json +++ b/sdk/hybridconnectivity/arm-hybridconnectivity/package.json @@ -68,12 +68,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -85,29 +85,33 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/javascript/README.md b/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/javascript/README.md index 52cfd2a5763e..f7f8c70875fc 100644 --- a/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/javascript/README.md +++ b/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/javascript/README.md @@ -69,7 +69,7 @@ node endpointsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node endpointsCreateOrUpdateSample.js +cross-env node endpointsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/typescript/README.md b/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/typescript/README.md index 0308f644f2a8..735bbf690191 100644 --- a/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/typescript/README.md +++ b/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/typescript/README.md @@ -81,7 +81,7 @@ node dist/endpointsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/endpointsCreateOrUpdateSample.js +cross-env node dist/endpointsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/hybridcontainerservice/arm-hybridcontainerservice/package.json b/sdk/hybridcontainerservice/arm-hybridcontainerservice/package.json index 25a69f0a295e..4e7b051cc01e 100644 --- a/sdk/hybridcontainerservice/arm-hybridcontainerservice/package.json +++ b/sdk/hybridcontainerservice/arm-hybridcontainerservice/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/javascript/README.md b/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/javascript/README.md index 80669e96f28b..dfa295132785 100644 --- a/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/javascript/README.md +++ b/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/javascript/README.md @@ -66,7 +66,7 @@ node agentPoolCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node agentPoolCreateOrUpdateSample.js +cross-env node agentPoolCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/typescript/README.md b/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/typescript/README.md index 291b9fd8e7d3..1d3e49f1b358 100644 --- a/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/typescript/README.md +++ b/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/typescript/README.md @@ -78,7 +78,7 @@ node dist/agentPoolCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/agentPoolCreateOrUpdateSample.js +cross-env node dist/agentPoolCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/hybridkubernetes/arm-hybridkubernetes/package.json b/sdk/hybridkubernetes/arm-hybridkubernetes/package.json index 8e1c3f7f87c6..da2e909cb991 100644 --- a/sdk/hybridkubernetes/arm-hybridkubernetes/package.json +++ b/sdk/hybridkubernetes/arm-hybridkubernetes/package.json @@ -38,8 +38,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,11 +61,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "lint": "echo skipped", "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/javascript/README.md b/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/javascript/README.md index 18f127e83b85..5be2b2bae5f2 100644 --- a/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/javascript/README.md +++ b/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/javascript/README.md @@ -55,7 +55,7 @@ node connectedClusterCreateOrReplaceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDKUBERNETES_SUBSCRIPTION_ID="" HYBRIDKUBERNETES_RESOURCE_GROUP="" node connectedClusterCreateOrReplaceSample.js +cross-env HYBRIDKUBERNETES_SUBSCRIPTION_ID="" HYBRIDKUBERNETES_RESOURCE_GROUP="" node connectedClusterCreateOrReplaceSample.js ``` ## Next Steps diff --git a/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/typescript/README.md b/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/typescript/README.md index 4ab559eac87c..3cdaaccfd5ea 100644 --- a/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/typescript/README.md +++ b/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/typescript/README.md @@ -67,7 +67,7 @@ node dist/connectedClusterCreateOrReplaceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDKUBERNETES_SUBSCRIPTION_ID="" HYBRIDKUBERNETES_RESOURCE_GROUP="" node dist/connectedClusterCreateOrReplaceSample.js +cross-env HYBRIDKUBERNETES_SUBSCRIPTION_ID="" HYBRIDKUBERNETES_RESOURCE_GROUP="" node dist/connectedClusterCreateOrReplaceSample.js ``` ## Next Steps diff --git a/sdk/hybridnetwork/arm-hybridnetwork/package.json b/sdk/hybridnetwork/arm-hybridnetwork/package.json index ad83243447d4..4a1740e43689 100644 --- a/sdk/hybridnetwork/arm-hybridnetwork/package.json +++ b/sdk/hybridnetwork/arm-hybridnetwork/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/javascript/README.md b/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/javascript/README.md index ae6e58cfc279..3b591d754d37 100644 --- a/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/javascript/README.md +++ b/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/javascript/README.md @@ -113,7 +113,7 @@ node artifactManifestsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDNETWORK_SUBSCRIPTION_ID="" HYBRIDNETWORK_RESOURCE_GROUP="" node artifactManifestsCreateOrUpdateSample.js +cross-env HYBRIDNETWORK_SUBSCRIPTION_ID="" HYBRIDNETWORK_RESOURCE_GROUP="" node artifactManifestsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/typescript/README.md b/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/typescript/README.md index 6100b35a2239..02cce5e63334 100644 --- a/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/typescript/README.md +++ b/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/typescript/README.md @@ -125,7 +125,7 @@ node dist/artifactManifestsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDNETWORK_SUBSCRIPTION_ID="" HYBRIDNETWORK_RESOURCE_GROUP="" node dist/artifactManifestsCreateOrUpdateSample.js +cross-env HYBRIDNETWORK_SUBSCRIPTION_ID="" HYBRIDNETWORK_RESOURCE_GROUP="" node dist/artifactManifestsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/identity/identity-broker/package.json b/sdk/identity/identity-broker/package.json index 39da263cb7b2..0e28050ff80b 100644 --- a/sdk/identity/identity-broker/package.json +++ b/sdk/identity/identity-broker/package.json @@ -9,11 +9,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm types \"*.tgz\" \"*.log\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm types \"*.tgz\" \"*.log\"", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -66,7 +66,11 @@ "@azure/logger": "workspace:^", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/identity/identity-broker/samples/v1/javascript/README.md b/sdk/identity/identity-broker/samples/v1/javascript/README.md index df53a30331c6..555c96e84bca 100644 --- a/sdk/identity/identity-broker/samples/v1/javascript/README.md +++ b/sdk/identity/identity-broker/samples/v1/javascript/README.md @@ -50,7 +50,7 @@ npm run start Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron index.js +cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron index.js ``` ## Next Steps diff --git a/sdk/identity/identity-broker/samples/v1/typescript/README.md b/sdk/identity/identity-broker/samples/v1/typescript/README.md index 9e9fb826e801..ea866917924d 100644 --- a/sdk/identity/identity-broker/samples/v1/typescript/README.md +++ b/sdk/identity/identity-broker/samples/v1/typescript/README.md @@ -56,7 +56,7 @@ npm run start Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron ./dist/index.js +cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron ./dist/index.js ``` ## Next Steps diff --git a/sdk/identity/identity-broker/samples/v2/javascript/README.md b/sdk/identity/identity-broker/samples/v2/javascript/README.md index df53a30331c6..555c96e84bca 100644 --- a/sdk/identity/identity-broker/samples/v2/javascript/README.md +++ b/sdk/identity/identity-broker/samples/v2/javascript/README.md @@ -50,7 +50,7 @@ npm run start Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron index.js +cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron index.js ``` ## Next Steps diff --git a/sdk/identity/identity-cache-persistence/package.json b/sdk/identity/identity-cache-persistence/package.json index 484c53fc1298..444826f28055 100644 --- a/sdk/identity/identity-cache-persistence/package.json +++ b/sdk/identity/identity-cache-persistence/package.json @@ -9,11 +9,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -66,9 +66,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/identity/identity-perf-tests/package.json b/sdk/identity/identity-perf-tests/package.json index 54a0646c65cb..1aeb89e0522a 100644 --- a/sdk/identity/identity-perf-tests/package.json +++ b/sdk/identity/identity-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/identity/identity-vscode/package.json b/sdk/identity/identity-vscode/package.json index 9de29d74d2d8..e41c3f5a75a4 100644 --- a/sdk/identity/identity-vscode/package.json +++ b/sdk/identity/identity-vscode/package.json @@ -9,11 +9,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -64,9 +64,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/identity/identity/package.json b/sdk/identity/identity/package.json index a231de92ca18..cd428dd8f4c9 100644 --- a/sdk/identity/identity/package.json +++ b/sdk/identity/identity/package.json @@ -24,11 +24,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test --ignore-pattern 'test/integration/**'", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion] --ignore-pattern 'test/integration/**'", "pack": "pnpm pack 2>&1", @@ -99,11 +99,15 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "assertion-error": "^2.0.1", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "jsonwebtoken": "^9.0.0", "ms": "^2.1.3", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/identity/identity/samples/v2/javascript/README.md b/sdk/identity/identity/samples/v2/javascript/README.md index f8d9a171ae50..02ce37a81af5 100644 --- a/sdk/identity/identity/samples/v2/javascript/README.md +++ b/sdk/identity/identity/samples/v2/javascript/README.md @@ -52,7 +52,7 @@ node clientSecretCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" AZURE_CLIENT_ID="" AZURE_CLIENT_SECRET="" node clientSecretCredential.js +cross-env AZURE_TENANT_ID="" AZURE_CLIENT_ID="" AZURE_CLIENT_SECRET="" node clientSecretCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/samples/v2/typescript/README.md b/sdk/identity/identity/samples/v2/typescript/README.md index d604f5ad2f66..25b26a66198f 100644 --- a/sdk/identity/identity/samples/v2/typescript/README.md +++ b/sdk/identity/identity/samples/v2/typescript/README.md @@ -64,7 +64,7 @@ node dist/clientSecretCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" AZURE_CLIENT_ID="" AZURE_CLIENT_SECRET="" node dist/clientSecretCredential.js +cross-env AZURE_TENANT_ID="" AZURE_CLIENT_ID="" AZURE_CLIENT_SECRET="" node dist/clientSecretCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/samples/v3/javascript/README.md b/sdk/identity/identity/samples/v3/javascript/README.md index 366f1c9e6976..1074271aeace 100644 --- a/sdk/identity/identity/samples/v3/javascript/README.md +++ b/sdk/identity/identity/samples/v3/javascript/README.md @@ -54,7 +54,7 @@ node azureDeveloperCliCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" node azureDeveloperCliCredential.js +cross-env AZURE_TENANT_ID="" node azureDeveloperCliCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/samples/v3/typescript/README.md b/sdk/identity/identity/samples/v3/typescript/README.md index 9807c0895d28..71769ab556df 100644 --- a/sdk/identity/identity/samples/v3/typescript/README.md +++ b/sdk/identity/identity/samples/v3/typescript/README.md @@ -66,7 +66,7 @@ node dist/azureDeveloperCliCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" node dist/azureDeveloperCliCredential.js +cross-env AZURE_TENANT_ID="" node dist/azureDeveloperCliCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/samples/v4/javascript/README.md b/sdk/identity/identity/samples/v4/javascript/README.md index 275d4a707085..7e63bdbc6043 100644 --- a/sdk/identity/identity/samples/v4/javascript/README.md +++ b/sdk/identity/identity/samples/v4/javascript/README.md @@ -57,7 +57,7 @@ node azureDeveloperCliCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" node azureDeveloperCliCredential.js +cross-env AZURE_TENANT_ID="" node azureDeveloperCliCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/samples/v4/typescript/README.md b/sdk/identity/identity/samples/v4/typescript/README.md index e9f10ac2b1cf..705efa21074f 100644 --- a/sdk/identity/identity/samples/v4/typescript/README.md +++ b/sdk/identity/identity/samples/v4/typescript/README.md @@ -69,7 +69,7 @@ node dist/azureDeveloperCliCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" node dist/azureDeveloperCliCredential.js +cross-env AZURE_TENANT_ID="" node dist/azureDeveloperCliCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/test/manual/interactive-browser-credential/package.json b/sdk/identity/identity/test/manual/interactive-browser-credential/package.json index c26097df005c..7ade38e1cb0b 100644 --- a/sdk/identity/identity/test/manual/interactive-browser-credential/package.json +++ b/sdk/identity/identity/test/manual/interactive-browser-credential/package.json @@ -6,8 +6,8 @@ "scripts": { "build": "webpack --config webpack.config.js", "start": "webpack-dev-server", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../../../../.prettierrc.json --ignore-path ../../../../../../.prettierignore \"src/**/*.tsx\"", - "format": "dev-tool run vendored prettier --write --config ../../../../../../.prettierrc.json --ignore-path ../../../../../../.prettierignore \"src/**/*.tsx\"" + "check-format": "prettier --list-different --config ../../../../../../.prettierrc.json --ignore-path ../../../../../../.prettierignore \"src/**/*.tsx\"", + "format": "prettier --write --config ../../../../../../.prettierrc.json --ignore-path ../../../../../../.prettierignore \"src/**/*.tsx\"" }, "author": "Microsoft Corporation", "license": "MIT", diff --git a/sdk/imagebuilder/arm-imagebuilder/package.json b/sdk/imagebuilder/arm-imagebuilder/package.json index 1b5251a9ad3c..6deb8e155df6 100644 --- a/sdk/imagebuilder/arm-imagebuilder/package.json +++ b/sdk/imagebuilder/arm-imagebuilder/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/imagebuilder/arm-imagebuilder/samples/v4/javascript/README.md b/sdk/imagebuilder/arm-imagebuilder/samples/v4/javascript/README.md index 9e7dcbdeaf13..41508dad15fb 100644 --- a/sdk/imagebuilder/arm-imagebuilder/samples/v4/javascript/README.md +++ b/sdk/imagebuilder/arm-imagebuilder/samples/v4/javascript/README.md @@ -51,7 +51,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IMAGEBUILDER_SUBSCRIPTION_ID="" node operationsListSample.js +cross-env IMAGEBUILDER_SUBSCRIPTION_ID="" node operationsListSample.js ``` ## Next Steps diff --git a/sdk/imagebuilder/arm-imagebuilder/samples/v4/typescript/README.md b/sdk/imagebuilder/arm-imagebuilder/samples/v4/typescript/README.md index e476fb634bea..63ff231152cb 100644 --- a/sdk/imagebuilder/arm-imagebuilder/samples/v4/typescript/README.md +++ b/sdk/imagebuilder/arm-imagebuilder/samples/v4/typescript/README.md @@ -63,7 +63,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IMAGEBUILDER_SUBSCRIPTION_ID="" node dist/operationsListSample.js +cross-env IMAGEBUILDER_SUBSCRIPTION_ID="" node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/impactreporting/arm-impactreporting/package.json b/sdk/impactreporting/arm-impactreporting/package.json index 3b6960207c7f..819a4ecd9dff 100644 --- a/sdk/impactreporting/arm-impactreporting/package.json +++ b/sdk/impactreporting/arm-impactreporting/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/impactreporting/arm-impactreporting/samples/v1-beta/javascript/README.md b/sdk/impactreporting/arm-impactreporting/samples/v1-beta/javascript/README.md index 6dd615a2fdc6..05efa85feb89 100644 --- a/sdk/impactreporting/arm-impactreporting/samples/v1-beta/javascript/README.md +++ b/sdk/impactreporting/arm-impactreporting/samples/v1-beta/javascript/README.md @@ -52,7 +52,7 @@ node connectorsConnectorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node connectorsConnectorsCreateOrUpdateSample.js +cross-env node connectorsConnectorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/impactreporting/arm-impactreporting/samples/v1-beta/typescript/README.md b/sdk/impactreporting/arm-impactreporting/samples/v1-beta/typescript/README.md index 316d6c4c2b6e..b39453edf6b0 100644 --- a/sdk/impactreporting/arm-impactreporting/samples/v1-beta/typescript/README.md +++ b/sdk/impactreporting/arm-impactreporting/samples/v1-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/connectorsConnectorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/connectorsConnectorsCreateOrUpdateSample.js +cross-env node dist/connectorsConnectorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/informatica/arm-informaticadatamanagement/package.json b/sdk/informatica/arm-informaticadatamanagement/package.json index 333ca32e6049..7211409509c8 100644 --- a/sdk/informatica/arm-informaticadatamanagement/package.json +++ b/sdk/informatica/arm-informaticadatamanagement/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/informatica/arm-informaticadatamanagement/samples/v1/javascript/README.md b/sdk/informatica/arm-informaticadatamanagement/samples/v1/javascript/README.md index ba5c70cbe890..2a93256df326 100644 --- a/sdk/informatica/arm-informaticadatamanagement/samples/v1/javascript/README.md +++ b/sdk/informatica/arm-informaticadatamanagement/samples/v1/javascript/README.md @@ -53,7 +53,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env INFORMATICA_SUBSCRIPTION_ID="" node operationsListSample.js +cross-env INFORMATICA_SUBSCRIPTION_ID="" node operationsListSample.js ``` ## Next Steps diff --git a/sdk/informatica/arm-informaticadatamanagement/samples/v1/typescript/README.md b/sdk/informatica/arm-informaticadatamanagement/samples/v1/typescript/README.md index 04fb38533dc1..625489081468 100644 --- a/sdk/informatica/arm-informaticadatamanagement/samples/v1/typescript/README.md +++ b/sdk/informatica/arm-informaticadatamanagement/samples/v1/typescript/README.md @@ -65,7 +65,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env INFORMATICA_SUBSCRIPTION_ID="" node dist/operationsListSample.js +cross-env INFORMATICA_SUBSCRIPTION_ID="" node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/instrumentation/opentelemetry-instrumentation-azure-sdk/package.json b/sdk/instrumentation/opentelemetry-instrumentation-azure-sdk/package.json index f3136aedf6c9..72f7868aeadf 100644 --- a/sdk/instrumentation/opentelemetry-instrumentation-azure-sdk/package.json +++ b/sdk/instrumentation/opentelemetry-instrumentation-azure-sdk/package.json @@ -20,11 +20,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -63,8 +63,8 @@ "@opentelemetry/api": "^1.9.0", "@opentelemetry/core": "^2.0.0", "@opentelemetry/instrumentation": "^0.200.0", - "tslib": "^2.7.0", - "@opentelemetry/sdk-trace-web": "^2.0.0" + "@opentelemetry/sdk-trace-web": "^2.0.0", + "tslib": "^2.7.0" }, "devDependencies": { "@azure/core-rest-pipeline": "workspace:^", @@ -75,9 +75,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/iot/iot-modelsrepository/package.json b/sdk/iot/iot-modelsrepository/package.json index 0751b6cd5b2f..105c58839d1c 100644 --- a/sdk/iot/iot-modelsrepository/package.json +++ b/sdk/iot/iot-modelsrepository/package.json @@ -10,13 +10,13 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint package.json src test", - "lint:fix": "dev-tool run vendored eslint package.json src test --fix --fix-type [problem,suggestion]", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "temp-unit-test": "mocha -r ts-node/register --timeout 1200000 test/node/*.spec.ts", "test": "npm run test:node && npm run test:browser", @@ -63,8 +63,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/iot/iot-modelsrepository/samples/v1/javascript/README.md b/sdk/iot/iot-modelsrepository/samples/v1/javascript/README.md index ce1b70df0578..7f16d51f9df7 100644 --- a/sdk/iot/iot-modelsrepository/samples/v1/javascript/README.md +++ b/sdk/iot/iot-modelsrepository/samples/v1/javascript/README.md @@ -47,7 +47,7 @@ node dtmiConventionsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dtmiConventionsSample.js +cross-env node dtmiConventionsSample.js ``` ## Next Steps diff --git a/sdk/iot/iot-modelsrepository/samples/v1/typescript/README.md b/sdk/iot/iot-modelsrepository/samples/v1/typescript/README.md index 23443358aaa8..2c855049f802 100644 --- a/sdk/iot/iot-modelsrepository/samples/v1/typescript/README.md +++ b/sdk/iot/iot-modelsrepository/samples/v1/typescript/README.md @@ -59,7 +59,7 @@ node dist/dtmiConventionsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/dtmiConventionsSample.js +cross-env node dist/dtmiConventionsSample.js ``` ## Next Steps diff --git a/sdk/iotcentral/arm-iotcentral/package.json b/sdk/iotcentral/arm-iotcentral/package.json index eaae10856369..784c9d3377eb 100644 --- a/sdk/iotcentral/arm-iotcentral/package.json +++ b/sdk/iotcentral/arm-iotcentral/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/iotcentral/arm-iotcentral/samples/v7-beta/javascript/README.md b/sdk/iotcentral/arm-iotcentral/samples/v7-beta/javascript/README.md index 643695832e8b..37c5c9f2aa4c 100644 --- a/sdk/iotcentral/arm-iotcentral/samples/v7-beta/javascript/README.md +++ b/sdk/iotcentral/arm-iotcentral/samples/v7-beta/javascript/README.md @@ -62,7 +62,7 @@ node appsCheckNameAvailability.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node appsCheckNameAvailability.js +cross-env node appsCheckNameAvailability.js ``` ## Next Steps diff --git a/sdk/iotcentral/arm-iotcentral/samples/v7-beta/typescript/README.md b/sdk/iotcentral/arm-iotcentral/samples/v7-beta/typescript/README.md index 925f88f6e030..8b2b8690aa12 100644 --- a/sdk/iotcentral/arm-iotcentral/samples/v7-beta/typescript/README.md +++ b/sdk/iotcentral/arm-iotcentral/samples/v7-beta/typescript/README.md @@ -74,7 +74,7 @@ node dist/appsCheckNameAvailability.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/appsCheckNameAvailability.js +cross-env node dist/appsCheckNameAvailability.js ``` ## Next Steps diff --git a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/package.json b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/package.json index 9d88432138d9..7c9344d41aa7 100644 --- a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/package.json +++ b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/package.json @@ -71,12 +71,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -90,28 +90,32 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/javascript/README.md b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/javascript/README.md index aae559be2dcb..ce456fd3b77f 100644 --- a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/javascript/README.md +++ b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/javascript/README.md @@ -59,7 +59,7 @@ node binaryHardeningListByFirmwareSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node binaryHardeningListByFirmwareSample.js +cross-env node binaryHardeningListByFirmwareSample.js ``` ## Next Steps diff --git a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/typescript/README.md b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/typescript/README.md index a191dfc6f78b..b78e75975db3 100644 --- a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/typescript/README.md +++ b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/typescript/README.md @@ -71,7 +71,7 @@ node dist/binaryHardeningListByFirmwareSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/binaryHardeningListByFirmwareSample.js +cross-env node dist/binaryHardeningListByFirmwareSample.js ``` ## Next Steps diff --git a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/package.json b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/package.json index 9882ddc671f4..9358aaeaf653 100644 --- a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/package.json +++ b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index e5667941c6e7..510e29e38deb 100644 --- a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -68,7 +68,7 @@ node certificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node certificatesCreateOrUpdateSample.js +cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node certificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index cdc295150d4a..3a7de8bc2a52 100644 --- a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -80,7 +80,7 @@ node dist/certificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node dist/certificatesCreateOrUpdateSample.js +cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node dist/certificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/iothub/arm-iothub/package.json b/sdk/iothub/arm-iothub/package.json index fc615e34a49f..63002eb512a5 100644 --- a/sdk/iothub/arm-iothub/package.json +++ b/sdk/iothub/arm-iothub/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/iothub/arm-iothub/samples/v6/javascript/README.md b/sdk/iothub/arm-iothub/samples/v6/javascript/README.md index a608a0031350..02bec8a7ffa7 100644 --- a/sdk/iothub/arm-iothub/samples/v6/javascript/README.md +++ b/sdk/iothub/arm-iothub/samples/v6/javascript/README.md @@ -74,7 +74,7 @@ node certificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node certificatesCreateOrUpdateSample.js +cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node certificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/iothub/arm-iothub/samples/v6/typescript/README.md b/sdk/iothub/arm-iothub/samples/v6/typescript/README.md index 6fb2a866ac6c..03ad4c5bdebc 100644 --- a/sdk/iothub/arm-iothub/samples/v6/typescript/README.md +++ b/sdk/iothub/arm-iothub/samples/v6/typescript/README.md @@ -86,7 +86,7 @@ node dist/certificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node dist/certificatesCreateOrUpdateSample.js +cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node dist/certificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/iotoperations/arm-iotoperations/package.json b/sdk/iotoperations/arm-iotoperations/package.json index 6513bd9def90..468d4a31631a 100644 --- a/sdk/iotoperations/arm-iotoperations/package.json +++ b/sdk/iotoperations/arm-iotoperations/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/iotoperations/arm-iotoperations/samples/v1-beta/javascript/README.md b/sdk/iotoperations/arm-iotoperations/samples/v1-beta/javascript/README.md index 855fb0992819..e7376517bcbd 100644 --- a/sdk/iotoperations/arm-iotoperations/samples/v1-beta/javascript/README.md +++ b/sdk/iotoperations/arm-iotoperations/samples/v1-beta/javascript/README.md @@ -71,7 +71,7 @@ node brokerAuthenticationCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node brokerAuthenticationCreateOrUpdateSample.js +cross-env node brokerAuthenticationCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/iotoperations/arm-iotoperations/samples/v1-beta/typescript/README.md b/sdk/iotoperations/arm-iotoperations/samples/v1-beta/typescript/README.md index 45ebbce7ca36..4a693c1a1a30 100644 --- a/sdk/iotoperations/arm-iotoperations/samples/v1-beta/typescript/README.md +++ b/sdk/iotoperations/arm-iotoperations/samples/v1-beta/typescript/README.md @@ -83,7 +83,7 @@ node dist/brokerAuthenticationCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/brokerAuthenticationCreateOrUpdateSample.js +cross-env node dist/brokerAuthenticationCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/package.json b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/package.json index 6fc0583ea4b0..847b925dc24e 100644 --- a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/package.json +++ b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 5b06d9fc2519..bdf35e05b581 100644 --- a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -57,7 +57,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_SUBSCRIPTION_ID="" node operationsListSample.js +cross-env KEYVAULT_SUBSCRIPTION_ID="" node operationsListSample.js ``` ## Next Steps diff --git a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 1885f3235327..f3625ba9c684 100644 --- a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -69,7 +69,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_SUBSCRIPTION_ID="" node dist/operationsListSample.js +cross-env KEYVAULT_SUBSCRIPTION_ID="" node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/keyvault/arm-keyvault/package.json b/sdk/keyvault/arm-keyvault/package.json index 5dc453ccbf51..c47a11141502 100644 --- a/sdk/keyvault/arm-keyvault/package.json +++ b/sdk/keyvault/arm-keyvault/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/keyvault/arm-keyvault/samples/v3/javascript/README.md b/sdk/keyvault/arm-keyvault/samples/v3/javascript/README.md index 1bca963855d9..58a53d73064d 100644 --- a/sdk/keyvault/arm-keyvault/samples/v3/javascript/README.md +++ b/sdk/keyvault/arm-keyvault/samples/v3/javascript/README.md @@ -84,7 +84,7 @@ node keysCreateIfNotExistSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_SUBSCRIPTION_ID="" KEYVAULT_RESOURCE_GROUP="" node keysCreateIfNotExistSample.js +cross-env KEYVAULT_SUBSCRIPTION_ID="" KEYVAULT_RESOURCE_GROUP="" node keysCreateIfNotExistSample.js ``` ## Next Steps diff --git a/sdk/keyvault/arm-keyvault/samples/v3/typescript/README.md b/sdk/keyvault/arm-keyvault/samples/v3/typescript/README.md index dd5fa094bd59..10a8bd7bab32 100644 --- a/sdk/keyvault/arm-keyvault/samples/v3/typescript/README.md +++ b/sdk/keyvault/arm-keyvault/samples/v3/typescript/README.md @@ -96,7 +96,7 @@ node dist/keysCreateIfNotExistSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_SUBSCRIPTION_ID="" KEYVAULT_RESOURCE_GROUP="" node dist/keysCreateIfNotExistSample.js +cross-env KEYVAULT_SUBSCRIPTION_ID="" KEYVAULT_RESOURCE_GROUP="" node dist/keysCreateIfNotExistSample.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-admin/package.json b/sdk/keyvault/keyvault-admin/package.json index d9858fa263ec..ad73582a5d37 100644 --- a/sdk/keyvault/keyvault-admin/package.json +++ b/sdk/keyvault/keyvault-admin/package.json @@ -37,11 +37,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log statistics.html coverage && dev-tool run vendored rimraf --glob src/**/*.js && dev-tool run vendored rimraf --glob test/**/*.js", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log statistics.html coverage && rimraf --glob src/**/*.js && rimraf --glob test/**/*.js", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", "generate:client": "tsp-client update -d --emitter-options=\"generate-metadata=false;generate-test=false\" && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src --fix --fix-type [problem,suggestion]", @@ -49,7 +49,7 @@ "test": "npm run test:node && npm run test:browser", "test:browser": "echo Skipped", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", - "test:node:live": "dev-tool run vendored cross-env TEST_MODE=live dev-tool run test:vitest --no-test-proxy", + "test:node:live": "cross-env TEST_MODE=live dev-tool run test:vitest --no-test-proxy", "update-snippets": "dev-tool run update-snippets" }, "//metadata": { @@ -99,9 +99,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/keyvault/keyvault-admin/samples/v4-beta/javascript/README.md b/sdk/keyvault/keyvault-admin/samples/v4-beta/javascript/README.md index 136a4808a3ff..e95265278ce0 100644 --- a/sdk/keyvault/keyvault-admin/samples/v4-beta/javascript/README.md +++ b/sdk/keyvault/keyvault-admin/samples/v4-beta/javascript/README.md @@ -56,7 +56,7 @@ node accessControlHelloWorld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node accessControlHelloWorld.js +cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node accessControlHelloWorld.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-admin/samples/v4-beta/typescript/README.md b/sdk/keyvault/keyvault-admin/samples/v4-beta/typescript/README.md index 2d94b59901be..d86c8e188188 100644 --- a/sdk/keyvault/keyvault-admin/samples/v4-beta/typescript/README.md +++ b/sdk/keyvault/keyvault-admin/samples/v4-beta/typescript/README.md @@ -68,7 +68,7 @@ node dist/accessControlHelloWorld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node dist/accessControlHelloWorld.js +cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node dist/accessControlHelloWorld.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-admin/samples/v4/javascript/README.md b/sdk/keyvault/keyvault-admin/samples/v4/javascript/README.md index 9678eb9ba763..ffef61b5aab7 100644 --- a/sdk/keyvault/keyvault-admin/samples/v4/javascript/README.md +++ b/sdk/keyvault/keyvault-admin/samples/v4/javascript/README.md @@ -57,7 +57,7 @@ node accessControlHelloWorld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node accessControlHelloWorld.js +cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node accessControlHelloWorld.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-admin/samples/v4/typescript/README.md b/sdk/keyvault/keyvault-admin/samples/v4/typescript/README.md index c512fec7d03e..0ef74ea68c05 100644 --- a/sdk/keyvault/keyvault-admin/samples/v4/typescript/README.md +++ b/sdk/keyvault/keyvault-admin/samples/v4/typescript/README.md @@ -69,7 +69,7 @@ node dist/accessControlHelloWorld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node dist/accessControlHelloWorld.js +cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node dist/accessControlHelloWorld.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-certificates-perf-tests/package.json b/sdk/keyvault/keyvault-certificates-perf-tests/package.json index cd5d85f4b0b3..c56d2067c11f 100644 --- a/sdk/keyvault/keyvault-certificates-perf-tests/package.json +++ b/sdk/keyvault/keyvault-certificates-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/keyvault/keyvault-certificates/package.json b/sdk/keyvault/keyvault-certificates/package.json index d44040599166..5f88025767cc 100644 --- a/sdk/keyvault/keyvault-certificates/package.json +++ b/sdk/keyvault/keyvault-certificates/package.json @@ -34,11 +34,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist-esm dist-test types *.tgz *.log samples/typescript/dist", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist-esm dist-test types *.tgz *.log samples/typescript/dist", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", "generate:client": "tsp-client update -d --emitter-options=\"generate-metadata=false;generate-test=false\" && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -103,9 +103,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/keyvault/keyvault-certificates/samples/v4/javascript/README.md b/sdk/keyvault/keyvault-certificates/samples/v4/javascript/README.md index 5a5d1059a5e7..63467d76717c 100644 --- a/sdk/keyvault/keyvault-certificates/samples/v4/javascript/README.md +++ b/sdk/keyvault/keyvault-certificates/samples/v4/javascript/README.md @@ -63,7 +63,7 @@ node backupAndRestore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node backupAndRestore.js +cross-env KEYVAULT_URI="" node backupAndRestore.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-certificates/samples/v4/typescript/README.md b/sdk/keyvault/keyvault-certificates/samples/v4/typescript/README.md index b45ffeb5d70b..8b03beb7fa2b 100644 --- a/sdk/keyvault/keyvault-certificates/samples/v4/typescript/README.md +++ b/sdk/keyvault/keyvault-certificates/samples/v4/typescript/README.md @@ -75,7 +75,7 @@ node dist/backupAndRestore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node dist/backupAndRestore.js +cross-env KEYVAULT_URI="" node dist/backupAndRestore.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-common/package.json b/sdk/keyvault/keyvault-common/package.json index f4e89d42f9cf..2ef8d8a826ef 100644 --- a/sdk/keyvault/keyvault-common/package.json +++ b/sdk/keyvault/keyvault-common/package.json @@ -12,11 +12,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -62,8 +62,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/keyvault/keyvault-keys-perf-tests/package.json b/sdk/keyvault/keyvault-keys-perf-tests/package.json index 03589dd6620b..da22a8716bdc 100644 --- a/sdk/keyvault/keyvault-keys-perf-tests/package.json +++ b/sdk/keyvault/keyvault-keys-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/keyvault/keyvault-keys/package.json b/sdk/keyvault/keyvault-keys/package.json index 799c921278a3..609b44be641c 100644 --- a/sdk/keyvault/keyvault-keys/package.json +++ b/sdk/keyvault/keyvault-keys/package.json @@ -34,11 +34,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log dist-browser statistics.html coverage && dev-tool run vendored rimraf --glob src/**/*.js && dev-tool run vendored rimraf --glob test/**/*.js", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log dist-browser statistics.html coverage && rimraf --glob src/**/*.js && rimraf --glob test/**/*.js", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", "generate:client": "tsp-client update -d --emitter-options=\"generate-metadata=false;generate-test=false\" && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -94,9 +94,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/keyvault/keyvault-keys/samples/v4/javascript/README.md b/sdk/keyvault/keyvault-keys/samples/v4/javascript/README.md index 25583e1cfc25..776959588a71 100644 --- a/sdk/keyvault/keyvault-keys/samples/v4/javascript/README.md +++ b/sdk/keyvault/keyvault-keys/samples/v4/javascript/README.md @@ -57,7 +57,7 @@ node cryptography.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node cryptography.js +cross-env KEYVAULT_URI="" node cryptography.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-keys/samples/v4/typescript/README.md b/sdk/keyvault/keyvault-keys/samples/v4/typescript/README.md index 306cf7ee21e2..122e73754612 100644 --- a/sdk/keyvault/keyvault-keys/samples/v4/typescript/README.md +++ b/sdk/keyvault/keyvault-keys/samples/v4/typescript/README.md @@ -69,7 +69,7 @@ node dist/cryptography.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node dist/cryptography.js +cross-env KEYVAULT_URI="" node dist/cryptography.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-secrets-perf-tests/package.json b/sdk/keyvault/keyvault-secrets-perf-tests/package.json index 05066f34267e..b5c230850909 100644 --- a/sdk/keyvault/keyvault-secrets-perf-tests/package.json +++ b/sdk/keyvault/keyvault-secrets-perf-tests/package.json @@ -52,18 +52,22 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "private": true, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/keyvault/keyvault-secrets/package.json b/sdk/keyvault/keyvault-secrets/package.json index 2ef5ea9b075e..c215a23bbb4f 100644 --- a/sdk/keyvault/keyvault-secrets/package.json +++ b/sdk/keyvault/keyvault-secrets/package.json @@ -34,11 +34,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log dist-browser statistics.html coverage && dev-tool run vendored rimraf --glob src/**/*.js && dev-tool run vendored rimraf --glob test/**/*.js", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log dist-browser statistics.html coverage && rimraf --glob src/**/*.js && rimraf --glob test/**/*.js", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", "generate:client": "tsp-client update -d --emitter-options=\"generate-metadata=false;generate-test=false\" && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -96,9 +96,13 @@ "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/keyvault/keyvault-secrets/samples/v4/javascript/README.md b/sdk/keyvault/keyvault-secrets/samples/v4/javascript/README.md index 34fcb035f536..35e58ff772e5 100644 --- a/sdk/keyvault/keyvault-secrets/samples/v4/javascript/README.md +++ b/sdk/keyvault/keyvault-secrets/samples/v4/javascript/README.md @@ -58,7 +58,7 @@ node backupAndRestore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node backupAndRestore.js +cross-env KEYVAULT_URI="" node backupAndRestore.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-secrets/samples/v4/typescript/README.md b/sdk/keyvault/keyvault-secrets/samples/v4/typescript/README.md index bba2b3248120..812c77c43667 100644 --- a/sdk/keyvault/keyvault-secrets/samples/v4/typescript/README.md +++ b/sdk/keyvault/keyvault-secrets/samples/v4/typescript/README.md @@ -70,7 +70,7 @@ node dist/backupAndRestore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node dist/backupAndRestore.js +cross-env KEYVAULT_URI="" node dist/backupAndRestore.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/package.json b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/package.json index c9c9c38e41e8..08e9b5389ef6 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/package.json +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/package.json @@ -39,8 +39,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/javascript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/javascript/README.md index 1d0ec43ea35c..b394a768205e 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/javascript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/javascript/README.md @@ -42,7 +42,7 @@ node extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionsCreateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/typescript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/typescript/README.md index 5dce40928a70..39938ccf4688 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/typescript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/typescript/README.md @@ -54,7 +54,7 @@ node dist/extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionsCreateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/package.json b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/package.json index 696febd8c7f1..27b8c62023f2 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/package.json +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/javascript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/javascript/README.md index a2e03b58856f..4a6e159fe799 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/javascript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/javascript/README.md @@ -44,7 +44,7 @@ node extensionTypesClusterGetVersionSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionTypesClusterGetVersionSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionTypesClusterGetVersionSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/typescript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/typescript/README.md index 8431e0902bf9..a53b12131d9e 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/typescript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/typescript/README.md @@ -56,7 +56,7 @@ node dist/extensionTypesClusterGetVersionSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionTypesClusterGetVersionSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionTypesClusterGetVersionSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/package.json b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/package.json index d3344e20d176..e55da787dea7 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/package.json +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/package.json @@ -39,8 +39,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/javascript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/javascript/README.md index 7167750114ed..eeef7fb506c2 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/javascript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/javascript/README.md @@ -42,7 +42,7 @@ node fluxConfigOperationStatusGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node fluxConfigOperationStatusGetSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node fluxConfigOperationStatusGetSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/typescript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/typescript/README.md index a773fba900f3..8e70a5b81c22 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/typescript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/typescript/README.md @@ -54,7 +54,7 @@ node dist/fluxConfigOperationStatusGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/fluxConfigOperationStatusGetSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/fluxConfigOperationStatusGetSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/package.json b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/package.json index 94c6f0423b38..673a1f5ec61c 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/package.json +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/javascript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/javascript/README.md index c9f0d6989c08..771a0657be60 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/javascript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/javascript/README.md @@ -48,7 +48,7 @@ node privateEndpointConnectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node privateEndpointConnectionsCreateOrUpdateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node privateEndpointConnectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/typescript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/typescript/README.md index c54cfb4bd191..fe2e3fe73f6d 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/typescript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/typescript/README.md @@ -60,7 +60,7 @@ node dist/privateEndpointConnectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/privateEndpointConnectionsCreateOrUpdateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/privateEndpointConnectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/package.json b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/package.json index 440defa9252c..bbc09aabb5a5 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/package.json +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/javascript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/javascript/README.md index dbb88b6fab81..f19a91e5f77e 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/javascript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/javascript/README.md @@ -54,7 +54,7 @@ node extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionsCreateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/typescript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/typescript/README.md index 75eed38c75f3..3b35d0f5539d 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/typescript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/typescript/README.md @@ -66,7 +66,7 @@ node dist/extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionsCreateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesruntime/arm-containerorchestratorruntime/package.json b/sdk/kubernetesruntime/arm-containerorchestratorruntime/package.json index 66cab70ce29e..ce3f95e65be2 100644 --- a/sdk/kubernetesruntime/arm-containerorchestratorruntime/package.json +++ b/sdk/kubernetesruntime/arm-containerorchestratorruntime/package.json @@ -76,20 +76,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/javascript/README.md b/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/javascript/README.md index 01a50f1c9890..47cd2d5cd167 100644 --- a/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/javascript/README.md +++ b/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/javascript/README.md @@ -54,7 +54,7 @@ node bgpPeersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node bgpPeersCreateOrUpdateSample.js +cross-env node bgpPeersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/typescript/README.md b/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/typescript/README.md index 8b3a2412e11a..9a70df621c0b 100644 --- a/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/typescript/README.md +++ b/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/typescript/README.md @@ -66,7 +66,7 @@ node dist/bgpPeersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/bgpPeersCreateOrUpdateSample.js +cross-env node dist/bgpPeersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/kusto/arm-kusto/package.json b/sdk/kusto/arm-kusto/package.json index 94b95f38115c..f08a96b85b41 100644 --- a/sdk/kusto/arm-kusto/package.json +++ b/sdk/kusto/arm-kusto/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/README.md b/sdk/kusto/arm-kusto/samples/v8/javascript/README.md index d7872f790b13..6b9d036bfb0a 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/README.md +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/README.md @@ -119,7 +119,7 @@ node attachedDatabaseConfigurationsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUSTO_SUBSCRIPTION_ID="" KUSTO_RESOURCE_GROUP="" node attachedDatabaseConfigurationsCheckNameAvailabilitySample.js +cross-env KUSTO_SUBSCRIPTION_ID="" KUSTO_RESOURCE_GROUP="" node attachedDatabaseConfigurationsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/kusto/arm-kusto/samples/v8/typescript/README.md b/sdk/kusto/arm-kusto/samples/v8/typescript/README.md index 28acf56422b8..385bbaadbf68 100644 --- a/sdk/kusto/arm-kusto/samples/v8/typescript/README.md +++ b/sdk/kusto/arm-kusto/samples/v8/typescript/README.md @@ -131,7 +131,7 @@ node dist/attachedDatabaseConfigurationsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUSTO_SUBSCRIPTION_ID="" KUSTO_RESOURCE_GROUP="" node dist/attachedDatabaseConfigurationsCheckNameAvailabilitySample.js +cross-env KUSTO_SUBSCRIPTION_ID="" KUSTO_RESOURCE_GROUP="" node dist/attachedDatabaseConfigurationsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/labservices/arm-labservices/package.json b/sdk/labservices/arm-labservices/package.json index dea3cbff8ef9..a2a225eb095f 100644 --- a/sdk/labservices/arm-labservices/package.json +++ b/sdk/labservices/arm-labservices/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/labservices/arm-labservices/samples/v3/javascript/README.md b/sdk/labservices/arm-labservices/samples/v3/javascript/README.md index 079eb35c2c8c..cd0a1bb87d8e 100644 --- a/sdk/labservices/arm-labservices/samples/v3/javascript/README.md +++ b/sdk/labservices/arm-labservices/samples/v3/javascript/README.md @@ -77,7 +77,7 @@ node imagesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LABSERVICES_SUBSCRIPTION_ID="" LABSERVICES_RESOURCE_GROUP="" node imagesCreateOrUpdateSample.js +cross-env LABSERVICES_SUBSCRIPTION_ID="" LABSERVICES_RESOURCE_GROUP="" node imagesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/labservices/arm-labservices/samples/v3/typescript/README.md b/sdk/labservices/arm-labservices/samples/v3/typescript/README.md index eb4b6146444e..ebed22109a0d 100644 --- a/sdk/labservices/arm-labservices/samples/v3/typescript/README.md +++ b/sdk/labservices/arm-labservices/samples/v3/typescript/README.md @@ -89,7 +89,7 @@ node dist/imagesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LABSERVICES_SUBSCRIPTION_ID="" LABSERVICES_RESOURCE_GROUP="" node dist/imagesCreateOrUpdateSample.js +cross-env LABSERVICES_SUBSCRIPTION_ID="" LABSERVICES_RESOURCE_GROUP="" node dist/imagesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/package.json b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/package.json index d7a64edf295d..541b2e5d2905 100644 --- a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/package.json +++ b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/package.json @@ -80,20 +80,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/javascript/README.md b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/javascript/README.md index 025d9add4df5..5619b2023d66 100644 --- a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/javascript/README.md +++ b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/typescript/README.md b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/typescript/README.md index b1b9f327e673..e948a8c4f54f 100644 --- a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/typescript/README.md +++ b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/javascript/README.md b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/javascript/README.md index 3cca10f9003a..41420a1da6f7 100644 --- a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/javascript/README.md +++ b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/typescript/README.md b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/typescript/README.md index af92e6a39fcf..1f51da6fb5b6 100644 --- a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/typescript/README.md +++ b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/largeinstance/arm-largeinstance/package.json b/sdk/largeinstance/arm-largeinstance/package.json index e5f153438721..c2b9c7c5b1ca 100644 --- a/sdk/largeinstance/arm-largeinstance/package.json +++ b/sdk/largeinstance/arm-largeinstance/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/largeinstance/arm-largeinstance/samples/v1-beta/javascript/README.md b/sdk/largeinstance/arm-largeinstance/samples/v1-beta/javascript/README.md index 94c87644bf8d..84633b6c64d3 100644 --- a/sdk/largeinstance/arm-largeinstance/samples/v1-beta/javascript/README.md +++ b/sdk/largeinstance/arm-largeinstance/samples/v1-beta/javascript/README.md @@ -48,7 +48,7 @@ node azureLargeInstanceGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LARGEINSTANCE_SUBSCRIPTION_ID="" LARGEINSTANCE_RESOURCE_GROUP="" node azureLargeInstanceGetSample.js +cross-env LARGEINSTANCE_SUBSCRIPTION_ID="" LARGEINSTANCE_RESOURCE_GROUP="" node azureLargeInstanceGetSample.js ``` ## Next Steps diff --git a/sdk/largeinstance/arm-largeinstance/samples/v1-beta/typescript/README.md b/sdk/largeinstance/arm-largeinstance/samples/v1-beta/typescript/README.md index 2e7f3ef5f509..bf32ad05f169 100644 --- a/sdk/largeinstance/arm-largeinstance/samples/v1-beta/typescript/README.md +++ b/sdk/largeinstance/arm-largeinstance/samples/v1-beta/typescript/README.md @@ -60,7 +60,7 @@ node dist/azureLargeInstanceGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LARGEINSTANCE_SUBSCRIPTION_ID="" LARGEINSTANCE_RESOURCE_GROUP="" node dist/azureLargeInstanceGetSample.js +cross-env LARGEINSTANCE_SUBSCRIPTION_ID="" LARGEINSTANCE_RESOURCE_GROUP="" node dist/azureLargeInstanceGetSample.js ``` ## Next Steps diff --git a/sdk/liftrarize/arm-arizeaiobservabilityeval/package.json b/sdk/liftrarize/arm-arizeaiobservabilityeval/package.json index 963463c38dc3..12ceaa1c9e09 100644 --- a/sdk/liftrarize/arm-arizeaiobservabilityeval/package.json +++ b/sdk/liftrarize/arm-arizeaiobservabilityeval/package.json @@ -80,20 +80,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/javascript/README.md b/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/javascript/README.md index 4be5d80e4cfc..268d7d40e245 100644 --- a/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/javascript/README.md +++ b/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/typescript/README.md b/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/typescript/README.md index dc051b08cf5b..c2a19df71d2f 100644 --- a/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/typescript/README.md +++ b/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/liftrqumulo/arm-qumulo/package.json b/sdk/liftrqumulo/arm-qumulo/package.json index 4eddd11424ef..530a940cd777 100644 --- a/sdk/liftrqumulo/arm-qumulo/package.json +++ b/sdk/liftrqumulo/arm-qumulo/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/liftrqumulo/arm-qumulo/samples/v1/javascript/README.md b/sdk/liftrqumulo/arm-qumulo/samples/v1/javascript/README.md index 924da1f1dafd..57e04feea3ac 100644 --- a/sdk/liftrqumulo/arm-qumulo/samples/v1/javascript/README.md +++ b/sdk/liftrqumulo/arm-qumulo/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node fileSystemsCreateOrUpdateSample.js +cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/liftrqumulo/arm-qumulo/samples/v1/typescript/README.md b/sdk/liftrqumulo/arm-qumulo/samples/v1/typescript/README.md index df61c5a6aa87..c0639dd43988 100644 --- a/sdk/liftrqumulo/arm-qumulo/samples/v1/typescript/README.md +++ b/sdk/liftrqumulo/arm-qumulo/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node dist/fileSystemsCreateOrUpdateSample.js +cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node dist/fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/liftrqumulo/arm-qumulo/samples/v2/javascript/README.md b/sdk/liftrqumulo/arm-qumulo/samples/v2/javascript/README.md index a56904cd7ea2..85c02921affe 100644 --- a/sdk/liftrqumulo/arm-qumulo/samples/v2/javascript/README.md +++ b/sdk/liftrqumulo/arm-qumulo/samples/v2/javascript/README.md @@ -43,7 +43,7 @@ node fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node fileSystemsCreateOrUpdateSample.js +cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/liftrqumulo/arm-qumulo/samples/v2/typescript/README.md b/sdk/liftrqumulo/arm-qumulo/samples/v2/typescript/README.md index b2a80c0a7dc3..47a67474685b 100644 --- a/sdk/liftrqumulo/arm-qumulo/samples/v2/typescript/README.md +++ b/sdk/liftrqumulo/arm-qumulo/samples/v2/typescript/README.md @@ -55,7 +55,7 @@ node dist/fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node dist/fileSystemsCreateOrUpdateSample.js +cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node dist/fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/liftrweightsandbiases/arm-weightsandbiases/package.json b/sdk/liftrweightsandbiases/arm-weightsandbiases/package.json index 1640c4c78363..8a6a0ef0ce9a 100644 --- a/sdk/liftrweightsandbiases/arm-weightsandbiases/package.json +++ b/sdk/liftrweightsandbiases/arm-weightsandbiases/package.json @@ -80,20 +80,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/javascript/README.md b/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/javascript/README.md index 4d264d12afd2..dff4c43148cc 100644 --- a/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/javascript/README.md +++ b/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node instancesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node instancesCreateOrUpdateSample.js +cross-env node instancesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/typescript/README.md b/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/typescript/README.md index 6de8d2cdda80..a2c205619afe 100644 --- a/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/typescript/README.md +++ b/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/instancesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/instancesCreateOrUpdateSample.js +cross-env node dist/instancesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/links/arm-links/package.json b/sdk/links/arm-links/package.json index c85feb0351c7..544c5e8c64b6 100644 --- a/sdk/links/arm-links/package.json +++ b/sdk/links/arm-links/package.json @@ -37,7 +37,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/loadtesting/arm-loadtesting/package.json b/sdk/loadtesting/arm-loadtesting/package.json index 86982807b56d..b86f435000d6 100644 --- a/sdk/loadtesting/arm-loadtesting/package.json +++ b/sdk/loadtesting/arm-loadtesting/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/loadtesting/arm-loadtesting/samples/v1/javascript/README.md b/sdk/loadtesting/arm-loadtesting/samples/v1/javascript/README.md index 2c937ccd4b4f..4a3097c5507d 100644 --- a/sdk/loadtesting/arm-loadtesting/samples/v1/javascript/README.md +++ b/sdk/loadtesting/arm-loadtesting/samples/v1/javascript/README.md @@ -47,7 +47,7 @@ node loadTestsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOADTESTSERVICE_SUBSCRIPTION_ID="" LOADTESTSERVICE_RESOURCE_GROUP="" node loadTestsCreateOrUpdateSample.js +cross-env LOADTESTSERVICE_SUBSCRIPTION_ID="" LOADTESTSERVICE_RESOURCE_GROUP="" node loadTestsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/loadtesting/arm-loadtesting/samples/v1/typescript/README.md b/sdk/loadtesting/arm-loadtesting/samples/v1/typescript/README.md index 236afd74fb3a..1b8b1a35c3b1 100644 --- a/sdk/loadtesting/arm-loadtesting/samples/v1/typescript/README.md +++ b/sdk/loadtesting/arm-loadtesting/samples/v1/typescript/README.md @@ -59,7 +59,7 @@ node dist/loadTestsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOADTESTSERVICE_SUBSCRIPTION_ID="" LOADTESTSERVICE_RESOURCE_GROUP="" node dist/loadTestsCreateOrUpdateSample.js +cross-env LOADTESTSERVICE_SUBSCRIPTION_ID="" LOADTESTSERVICE_RESOURCE_GROUP="" node dist/loadTestsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/loadtesting/create-playwright/package.json b/sdk/loadtesting/create-playwright/package.json index 17abc0b25c19..2fff6897ad63 100644 --- a/sdk/loadtesting/create-playwright/package.json +++ b/sdk/loadtesting/create-playwright/package.json @@ -36,11 +36,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist *.log dist-test temp types *.tgz *.xml samples/**/test-results/", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist *.log dist-test temp types *.tgz *.xml samples/**/test-results/", "execute:samples": "echo skipped", "extract-api": "echo skipped", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json CHANGELOG.md README.md src", "lint:fix": "eslint package.json CHANGELOG.md README.md src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -61,7 +61,11 @@ "@types/node": "catalog:", "@types/prompts": "^2.4.9", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/loadtesting/load-testing-rest/package.json b/sdk/loadtesting/load-testing-rest/package.json index 29024ef11408..bd227d723cde 100644 --- a/sdk/loadtesting/load-testing-rest/package.json +++ b/sdk/loadtesting/load-testing-rest/package.json @@ -43,11 +43,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -81,9 +81,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/loadtesting/load-testing-rest/samples/v1-beta/javascript/README.md b/sdk/loadtesting/load-testing-rest/samples/v1-beta/javascript/README.md index 6d67d9781cf8..ecd3691de5ed 100644 --- a/sdk/loadtesting/load-testing-rest/samples/v1-beta/javascript/README.md +++ b/sdk/loadtesting/load-testing-rest/samples/v1-beta/javascript/README.md @@ -56,7 +56,7 @@ node addAppComponents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOADTESTSERVICE_ENDPOINT="" LOADTESTSERVICE_TESTID="" SUBSCRIPTION_ID="" node addAppComponents.js +cross-env LOADTESTSERVICE_ENDPOINT="" LOADTESTSERVICE_TESTID="" SUBSCRIPTION_ID="" node addAppComponents.js ``` ## Next Steps diff --git a/sdk/loadtesting/load-testing-rest/samples/v1-beta/typescript/README.md b/sdk/loadtesting/load-testing-rest/samples/v1-beta/typescript/README.md index bf3af31e7625..f0ea5110ed6c 100644 --- a/sdk/loadtesting/load-testing-rest/samples/v1-beta/typescript/README.md +++ b/sdk/loadtesting/load-testing-rest/samples/v1-beta/typescript/README.md @@ -68,7 +68,7 @@ node dist/addAppComponents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOADTESTSERVICE_ENDPOINT="" LOADTESTSERVICE_TESTID="" SUBSCRIPTION_ID="" node dist/addAppComponents.js +cross-env LOADTESTSERVICE_ENDPOINT="" LOADTESTSERVICE_TESTID="" SUBSCRIPTION_ID="" node dist/addAppComponents.js ``` ## Next Steps diff --git a/sdk/loadtesting/playwright/package.json b/sdk/loadtesting/playwright/package.json index 9880b87cd196..694f4b19a3cf 100644 --- a/sdk/loadtesting/playwright/package.json +++ b/sdk/loadtesting/playwright/package.json @@ -52,11 +52,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist *.log dist-test temp types *.tgz *.xml samples/**/test-results/", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist *.log dist-test temp types *.tgz *.xml samples/**/test-results/", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json CHANGELOG.md README.md src", "lint:fix": "eslint package.json CHANGELOG.md README.md src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -67,24 +67,28 @@ }, "dependencies": { "@azure/core-auth": "^1.9.0", + "@azure/core-rest-pipeline": "^1.18.0", "@azure/logger": "^1.1.4", - "tslib": "^2.8.1", - "@azure/core-rest-pipeline": "^1.18.0" + "tslib": "^2.8.1" }, "devDependencies": { "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", + "@azure/identity": "catalog:internal", "@playwright/test": "^1.51.1", "@types/debug": "^4.1.12", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", - "vitest": "catalog:testing", - "@azure/identity": "catalog:internal" + "vitest": "catalog:testing" }, "peerDependencies": { "@playwright/test": "^1.47.0" diff --git a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/package.json b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/package.json index 79be0d2923ba..0f186e657671 100644 --- a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/package.json +++ b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index aac86941d0af..f8341c6b72eb 100644 --- a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -53,7 +53,7 @@ node authorizationOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOCKS_SUBSCRIPTION_ID="" node authorizationOperationsListSample.js +cross-env LOCKS_SUBSCRIPTION_ID="" node authorizationOperationsListSample.js ``` ## Next Steps diff --git a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 376dbb01ed29..1b66080cb4d5 100644 --- a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -65,7 +65,7 @@ node dist/authorizationOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOCKS_SUBSCRIPTION_ID="" node dist/authorizationOperationsListSample.js +cross-env LOCKS_SUBSCRIPTION_ID="" node dist/authorizationOperationsListSample.js ``` ## Next Steps diff --git a/sdk/locks/arm-locks/package.json b/sdk/locks/arm-locks/package.json index 9d0b804e3521..ad89f62a0b9c 100644 --- a/sdk/locks/arm-locks/package.json +++ b/sdk/locks/arm-locks/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/locks/arm-locks/samples/v2/javascript/README.md b/sdk/locks/arm-locks/samples/v2/javascript/README.md index 1c8e3341af1b..75ac07c8131e 100644 --- a/sdk/locks/arm-locks/samples/v2/javascript/README.md +++ b/sdk/locks/arm-locks/samples/v2/javascript/README.md @@ -53,7 +53,7 @@ node authorizationOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node authorizationOperationsListSample.js +cross-env node authorizationOperationsListSample.js ``` ## Next Steps diff --git a/sdk/locks/arm-locks/samples/v2/typescript/README.md b/sdk/locks/arm-locks/samples/v2/typescript/README.md index 5224f4cac5e1..6d32ba587e31 100644 --- a/sdk/locks/arm-locks/samples/v2/typescript/README.md +++ b/sdk/locks/arm-locks/samples/v2/typescript/README.md @@ -65,7 +65,7 @@ node dist/authorizationOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/authorizationOperationsListSample.js +cross-env node dist/authorizationOperationsListSample.js ``` ## Next Steps diff --git a/sdk/logic/arm-logic/package.json b/sdk/logic/arm-logic/package.json index d4b08ee9686a..7fd38be7ae0f 100644 --- a/sdk/logic/arm-logic/package.json +++ b/sdk/logic/arm-logic/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/logic/arm-logic/samples/v8/javascript/README.md b/sdk/logic/arm-logic/samples/v8/javascript/README.md index efea62c4eb90..90d623021eb7 100644 --- a/sdk/logic/arm-logic/samples/v8/javascript/README.md +++ b/sdk/logic/arm-logic/samples/v8/javascript/README.md @@ -142,7 +142,7 @@ node integrationAccountAgreementsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOGIC_SUBSCRIPTION_ID="" LOGIC_RESOURCE_GROUP="" node integrationAccountAgreementsCreateOrUpdateSample.js +cross-env LOGIC_SUBSCRIPTION_ID="" LOGIC_RESOURCE_GROUP="" node integrationAccountAgreementsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/logic/arm-logic/samples/v8/typescript/README.md b/sdk/logic/arm-logic/samples/v8/typescript/README.md index 59ace4eb36e6..dead039e8bce 100644 --- a/sdk/logic/arm-logic/samples/v8/typescript/README.md +++ b/sdk/logic/arm-logic/samples/v8/typescript/README.md @@ -154,7 +154,7 @@ node dist/integrationAccountAgreementsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOGIC_SUBSCRIPTION_ID="" LOGIC_RESOURCE_GROUP="" node dist/integrationAccountAgreementsCreateOrUpdateSample.js +cross-env LOGIC_SUBSCRIPTION_ID="" LOGIC_RESOURCE_GROUP="" node dist/integrationAccountAgreementsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-commitmentplans/package.json b/sdk/machinelearning/arm-commitmentplans/package.json index 00d7e8515025..b18f2fe3a6fc 100644 --- a/sdk/machinelearning/arm-commitmentplans/package.json +++ b/sdk/machinelearning/arm-commitmentplans/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearning/arm-machinelearning/package.json b/sdk/machinelearning/arm-machinelearning/package.json index 6ec2b01bf084..7ab1ead9b704 100644 --- a/sdk/machinelearning/arm-machinelearning/package.json +++ b/sdk/machinelearning/arm-machinelearning/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearning/arm-machinelearning/samples/v3/javascript/README.md b/sdk/machinelearning/arm-machinelearning/samples/v3/javascript/README.md index 07754bdff0d5..798ca2b45182 100644 --- a/sdk/machinelearning/arm-machinelearning/samples/v3/javascript/README.md +++ b/sdk/machinelearning/arm-machinelearning/samples/v3/javascript/README.md @@ -248,7 +248,7 @@ node batchDeploymentsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MACHINELEARNING_SUBSCRIPTION_ID="" MACHINELEARNING_RESOURCE_GROUP="" node batchDeploymentsCreateOrUpdateSample.js +cross-env MACHINELEARNING_SUBSCRIPTION_ID="" MACHINELEARNING_RESOURCE_GROUP="" node batchDeploymentsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-machinelearning/samples/v3/typescript/README.md b/sdk/machinelearning/arm-machinelearning/samples/v3/typescript/README.md index 660c262fa243..fa52c4da6e77 100644 --- a/sdk/machinelearning/arm-machinelearning/samples/v3/typescript/README.md +++ b/sdk/machinelearning/arm-machinelearning/samples/v3/typescript/README.md @@ -260,7 +260,7 @@ node dist/batchDeploymentsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MACHINELEARNING_SUBSCRIPTION_ID="" MACHINELEARNING_RESOURCE_GROUP="" node dist/batchDeploymentsCreateOrUpdateSample.js +cross-env MACHINELEARNING_SUBSCRIPTION_ID="" MACHINELEARNING_RESOURCE_GROUP="" node dist/batchDeploymentsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-webservices/package.json b/sdk/machinelearning/arm-webservices/package.json index e5d3287653af..ed053cdaf92d 100644 --- a/sdk/machinelearning/arm-webservices/package.json +++ b/sdk/machinelearning/arm-webservices/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearning/arm-webservices/samples/v1/javascript/README.md b/sdk/machinelearning/arm-webservices/samples/v1/javascript/README.md index 3576b14e09a5..8b71d3cc2182 100644 --- a/sdk/machinelearning/arm-webservices/samples/v1/javascript/README.md +++ b/sdk/machinelearning/arm-webservices/samples/v1/javascript/README.md @@ -44,7 +44,7 @@ node webServicesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node webServicesCreateOrUpdateSample.js +cross-env node webServicesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-webservices/samples/v1/typescript/README.md b/sdk/machinelearning/arm-webservices/samples/v1/typescript/README.md index 6f380a9903b2..857ecfe863e3 100644 --- a/sdk/machinelearning/arm-webservices/samples/v1/typescript/README.md +++ b/sdk/machinelearning/arm-webservices/samples/v1/typescript/README.md @@ -56,7 +56,7 @@ node dist/webServicesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/webServicesCreateOrUpdateSample.js +cross-env node dist/webServicesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-workspaces/package.json b/sdk/machinelearning/arm-workspaces/package.json index 0c35434ab34e..0a946e396406 100644 --- a/sdk/machinelearning/arm-workspaces/package.json +++ b/sdk/machinelearning/arm-workspaces/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearning/arm-workspaces/samples/v1/javascript/README.md b/sdk/machinelearning/arm-workspaces/samples/v1/javascript/README.md index ec208c3f52a1..5d49b8799ef0 100644 --- a/sdk/machinelearning/arm-workspaces/samples/v1/javascript/README.md +++ b/sdk/machinelearning/arm-workspaces/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node listWorkspaceKeys.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node listWorkspaceKeys.js +cross-env node listWorkspaceKeys.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-workspaces/samples/v1/typescript/README.md b/sdk/machinelearning/arm-workspaces/samples/v1/typescript/README.md index 14454517419a..7c0644670a43 100644 --- a/sdk/machinelearning/arm-workspaces/samples/v1/typescript/README.md +++ b/sdk/machinelearning/arm-workspaces/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/listWorkspaceKeys.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/listWorkspaceKeys.js +cross-env node dist/listWorkspaceKeys.js ``` ## Next Steps diff --git a/sdk/machinelearningcompute/arm-machinelearningcompute/package.json b/sdk/machinelearningcompute/arm-machinelearningcompute/package.json index 6c9bb9f9abe5..fa80bb5e1e6b 100644 --- a/sdk/machinelearningcompute/arm-machinelearningcompute/package.json +++ b/sdk/machinelearningcompute/arm-machinelearningcompute/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/javascript/README.md b/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/javascript/README.md index e443c854f466..0abb632e5a5c 100644 --- a/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/javascript/README.md +++ b/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/javascript/README.md @@ -56,7 +56,7 @@ node checkUpdateForAnOperationalizationCluster.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node checkUpdateForAnOperationalizationCluster.js +cross-env node checkUpdateForAnOperationalizationCluster.js ``` ## Next Steps diff --git a/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/typescript/README.md b/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/typescript/README.md index 39d5bf38481d..30c7f28a970e 100644 --- a/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/typescript/README.md +++ b/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/typescript/README.md @@ -68,7 +68,7 @@ node dist/checkUpdateForAnOperationalizationCluster.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/checkUpdateForAnOperationalizationCluster.js +cross-env node dist/checkUpdateForAnOperationalizationCluster.js ``` ## Next Steps diff --git a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/package.json b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/package.json index 2bec38d09911..83cdf5126ab2 100644 --- a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/package.json +++ b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/javascript/README.md b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/javascript/README.md index 00ec28d7314a..27bdcda0ebd4 100644 --- a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/javascript/README.md +++ b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/javascript/README.md @@ -52,7 +52,7 @@ node accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MACHINELEARNINGEXPERIMENTATION_SUBSCRIPTION_ID="" MACHINELEARNINGEXPERIMENTATION_RESOURCE_GROUP="" node accountsCreateOrUpdateSample.js +cross-env MACHINELEARNINGEXPERIMENTATION_SUBSCRIPTION_ID="" MACHINELEARNINGEXPERIMENTATION_RESOURCE_GROUP="" node accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/typescript/README.md b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/typescript/README.md index a366d97a7fcd..a0cfffe116b1 100644 --- a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/typescript/README.md +++ b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MACHINELEARNINGEXPERIMENTATION_SUBSCRIPTION_ID="" MACHINELEARNINGEXPERIMENTATION_RESOURCE_GROUP="" node dist/accountsCreateOrUpdateSample.js +cross-env MACHINELEARNINGEXPERIMENTATION_SUBSCRIPTION_ID="" MACHINELEARNINGEXPERIMENTATION_RESOURCE_GROUP="" node dist/accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/maintenance/arm-maintenance/package.json b/sdk/maintenance/arm-maintenance/package.json index d021ae013ada..b1abb6d2d345 100644 --- a/sdk/maintenance/arm-maintenance/package.json +++ b/sdk/maintenance/arm-maintenance/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/maintenance/arm-maintenance/samples/v1-beta/javascript/README.md b/sdk/maintenance/arm-maintenance/samples/v1-beta/javascript/README.md index 2857e04f8529..531266dd89f2 100644 --- a/sdk/maintenance/arm-maintenance/samples/v1-beta/javascript/README.md +++ b/sdk/maintenance/arm-maintenance/samples/v1-beta/javascript/README.md @@ -72,7 +72,7 @@ node applyUpdateForResourceGroupListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAINTENANCE_SUBSCRIPTION_ID="" MAINTENANCE_RESOURCE_GROUP="" node applyUpdateForResourceGroupListSample.js +cross-env MAINTENANCE_SUBSCRIPTION_ID="" MAINTENANCE_RESOURCE_GROUP="" node applyUpdateForResourceGroupListSample.js ``` ## Next Steps diff --git a/sdk/maintenance/arm-maintenance/samples/v1-beta/typescript/README.md b/sdk/maintenance/arm-maintenance/samples/v1-beta/typescript/README.md index 25d3061dfc94..f9b24b4fdade 100644 --- a/sdk/maintenance/arm-maintenance/samples/v1-beta/typescript/README.md +++ b/sdk/maintenance/arm-maintenance/samples/v1-beta/typescript/README.md @@ -84,7 +84,7 @@ node dist/applyUpdateForResourceGroupListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAINTENANCE_SUBSCRIPTION_ID="" MAINTENANCE_RESOURCE_GROUP="" node dist/applyUpdateForResourceGroupListSample.js +cross-env MAINTENANCE_SUBSCRIPTION_ID="" MAINTENANCE_RESOURCE_GROUP="" node dist/applyUpdateForResourceGroupListSample.js ``` ## Next Steps diff --git a/sdk/managedapplications/arm-managedapplications/package.json b/sdk/managedapplications/arm-managedapplications/package.json index 80153adfbaa2..3f2f1fc7538a 100644 --- a/sdk/managedapplications/arm-managedapplications/package.json +++ b/sdk/managedapplications/arm-managedapplications/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/managedapplications/arm-managedapplications/samples/v3/javascript/README.md b/sdk/managedapplications/arm-managedapplications/samples/v3/javascript/README.md index a05f76da1e38..822e6ecc22c4 100644 --- a/sdk/managedapplications/arm-managedapplications/samples/v3/javascript/README.md +++ b/sdk/managedapplications/arm-managedapplications/samples/v3/javascript/README.md @@ -67,7 +67,7 @@ node applicationDefinitionsCreateOrUpdateByIdSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MANAGEDAPPLICATIONS_SUBSCRIPTION_ID="" MANAGEDAPPLICATIONS_RESOURCE_GROUP="" node applicationDefinitionsCreateOrUpdateByIdSample.js +cross-env MANAGEDAPPLICATIONS_SUBSCRIPTION_ID="" MANAGEDAPPLICATIONS_RESOURCE_GROUP="" node applicationDefinitionsCreateOrUpdateByIdSample.js ``` ## Next Steps diff --git a/sdk/managedapplications/arm-managedapplications/samples/v3/typescript/README.md b/sdk/managedapplications/arm-managedapplications/samples/v3/typescript/README.md index f75ebb42c31c..f8450bbd9026 100644 --- a/sdk/managedapplications/arm-managedapplications/samples/v3/typescript/README.md +++ b/sdk/managedapplications/arm-managedapplications/samples/v3/typescript/README.md @@ -79,7 +79,7 @@ node dist/applicationDefinitionsCreateOrUpdateByIdSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MANAGEDAPPLICATIONS_SUBSCRIPTION_ID="" MANAGEDAPPLICATIONS_RESOURCE_GROUP="" node dist/applicationDefinitionsCreateOrUpdateByIdSample.js +cross-env MANAGEDAPPLICATIONS_SUBSCRIPTION_ID="" MANAGEDAPPLICATIONS_RESOURCE_GROUP="" node dist/applicationDefinitionsCreateOrUpdateByIdSample.js ``` ## Next Steps diff --git a/sdk/managednetworkfabric/arm-managednetworkfabric/package.json b/sdk/managednetworkfabric/arm-managednetworkfabric/package.json index ae226bc470ad..3d26f7ad7d8b 100644 --- a/sdk/managednetworkfabric/arm-managednetworkfabric/package.json +++ b/sdk/managednetworkfabric/arm-managednetworkfabric/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/javascript/README.md b/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/javascript/README.md index 0026a07d8ea5..5c991e78e98d 100644 --- a/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/javascript/README.md +++ b/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/javascript/README.md @@ -201,7 +201,7 @@ node accessControlListsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MANAGEDNETWORKFABRIC_SUBSCRIPTION_ID="" MANAGEDNETWORKFABRIC_RESOURCE_GROUP="" node accessControlListsCreateSample.js +cross-env MANAGEDNETWORKFABRIC_SUBSCRIPTION_ID="" MANAGEDNETWORKFABRIC_RESOURCE_GROUP="" node accessControlListsCreateSample.js ``` ## Next Steps diff --git a/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/typescript/README.md b/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/typescript/README.md index 3fbbd9dc76e4..683fa1962aab 100644 --- a/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/typescript/README.md +++ b/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/typescript/README.md @@ -213,7 +213,7 @@ node dist/accessControlListsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MANAGEDNETWORKFABRIC_SUBSCRIPTION_ID="" MANAGEDNETWORKFABRIC_RESOURCE_GROUP="" node dist/accessControlListsCreateSample.js +cross-env MANAGEDNETWORKFABRIC_SUBSCRIPTION_ID="" MANAGEDNETWORKFABRIC_RESOURCE_GROUP="" node dist/accessControlListsCreateSample.js ``` ## Next Steps diff --git a/sdk/managementgroups/arm-managementgroups/package.json b/sdk/managementgroups/arm-managementgroups/package.json index 6e973cbc79b8..9efcab067023 100644 --- a/sdk/managementgroups/arm-managementgroups/package.json +++ b/sdk/managementgroups/arm-managementgroups/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/managementgroups/arm-managementgroups/samples/v2/javascript/README.md b/sdk/managementgroups/arm-managementgroups/samples/v2/javascript/README.md index 68778aa63b10..ab9032a9c1b9 100644 --- a/sdk/managementgroups/arm-managementgroups/samples/v2/javascript/README.md +++ b/sdk/managementgroups/arm-managementgroups/samples/v2/javascript/README.md @@ -56,7 +56,7 @@ node checkNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node checkNameAvailabilitySample.js +cross-env node checkNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/managementgroups/arm-managementgroups/samples/v2/typescript/README.md b/sdk/managementgroups/arm-managementgroups/samples/v2/typescript/README.md index e2ad42ca0085..4df17416859b 100644 --- a/sdk/managementgroups/arm-managementgroups/samples/v2/typescript/README.md +++ b/sdk/managementgroups/arm-managementgroups/samples/v2/typescript/README.md @@ -68,7 +68,7 @@ node dist/checkNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/checkNameAvailabilitySample.js +cross-env node dist/checkNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/managementpartner/arm-managementpartner/package.json b/sdk/managementpartner/arm-managementpartner/package.json index 1a507c42132f..c6c263a19fb9 100644 --- a/sdk/managementpartner/arm-managementpartner/package.json +++ b/sdk/managementpartner/arm-managementpartner/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/managementpartner/arm-managementpartner/samples/v3/javascript/README.md b/sdk/managementpartner/arm-managementpartner/samples/v3/javascript/README.md index 9e11a46f2d2a..91aa113f0e3a 100644 --- a/sdk/managementpartner/arm-managementpartner/samples/v3/javascript/README.md +++ b/sdk/managementpartner/arm-managementpartner/samples/v3/javascript/README.md @@ -42,7 +42,7 @@ node operationListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationListSample.js +cross-env node operationListSample.js ``` ## Next Steps diff --git a/sdk/managementpartner/arm-managementpartner/samples/v3/typescript/README.md b/sdk/managementpartner/arm-managementpartner/samples/v3/typescript/README.md index 2581f7eeb71f..95454c1413bd 100644 --- a/sdk/managementpartner/arm-managementpartner/samples/v3/typescript/README.md +++ b/sdk/managementpartner/arm-managementpartner/samples/v3/typescript/README.md @@ -54,7 +54,7 @@ node dist/operationListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationListSample.js +cross-env node dist/operationListSample.js ``` ## Next Steps diff --git a/sdk/maps/arm-maps/package.json b/sdk/maps/arm-maps/package.json index 7a3c7604274c..58a746708b56 100644 --- a/sdk/maps/arm-maps/package.json +++ b/sdk/maps/arm-maps/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/maps/arm-maps/samples/v3-beta/javascript/README.md b/sdk/maps/arm-maps/samples/v3-beta/javascript/README.md index 156aac0500f1..25ad582ac0f6 100644 --- a/sdk/maps/arm-maps/samples/v3-beta/javascript/README.md +++ b/sdk/maps/arm-maps/samples/v3-beta/javascript/README.md @@ -52,7 +52,7 @@ node accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node accountsCreateOrUpdateSample.js +cross-env node accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/maps/arm-maps/samples/v3-beta/typescript/README.md b/sdk/maps/arm-maps/samples/v3-beta/typescript/README.md index 3057ef532f84..9a1f4c9d033b 100644 --- a/sdk/maps/arm-maps/samples/v3-beta/typescript/README.md +++ b/sdk/maps/arm-maps/samples/v3-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/accountsCreateOrUpdateSample.js +cross-env node dist/accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/maps/arm-maps/samples/v3/javascript/README.md b/sdk/maps/arm-maps/samples/v3/javascript/README.md index 11fb21d9adf1..ad586e3072ed 100644 --- a/sdk/maps/arm-maps/samples/v3/javascript/README.md +++ b/sdk/maps/arm-maps/samples/v3/javascript/README.md @@ -52,7 +52,7 @@ node accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_SUBSCRIPTION_ID="" MAPS_RESOURCE_GROUP="" node accountsCreateOrUpdateSample.js +cross-env MAPS_SUBSCRIPTION_ID="" MAPS_RESOURCE_GROUP="" node accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/maps/arm-maps/samples/v3/typescript/README.md b/sdk/maps/arm-maps/samples/v3/typescript/README.md index d7c221c7dacc..2e33d819204a 100644 --- a/sdk/maps/arm-maps/samples/v3/typescript/README.md +++ b/sdk/maps/arm-maps/samples/v3/typescript/README.md @@ -64,7 +64,7 @@ node dist/accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_SUBSCRIPTION_ID="" MAPS_RESOURCE_GROUP="" node dist/accountsCreateOrUpdateSample.js +cross-env MAPS_SUBSCRIPTION_ID="" MAPS_RESOURCE_GROUP="" node dist/accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/maps/maps-common/package.json b/sdk/maps/maps-common/package.json index edeaba7e8f8f..ed9a30620ac8 100644 --- a/sdk/maps/maps-common/package.json +++ b/sdk/maps/maps-common/package.json @@ -10,12 +10,12 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "ci": "npm run build && npm run check-format && npm run lint", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "generate:client": "echo skipped", "lint": "eslint package.json src", "lint:fix": "eslint package.json src --fix --fix-type [problem,suggestion]", @@ -65,8 +65,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-geolocation-rest/package.json b/sdk/maps/maps-geolocation-rest/package.json index 007f85d1002b..5de76f12fd39 100644 --- a/sdk/maps/maps-geolocation-rest/package.json +++ b/sdk/maps/maps-geolocation-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-geolocation-rest/samples/v1-beta/javascript/README.md b/sdk/maps/maps-geolocation-rest/samples/v1-beta/javascript/README.md index f8896d444335..67e1f6988bb8 100644 --- a/sdk/maps/maps-geolocation-rest/samples/v1-beta/javascript/README.md +++ b/sdk/maps/maps-geolocation-rest/samples/v1-beta/javascript/README.md @@ -39,7 +39,7 @@ node getCountryCodeFromIP.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node getCountryCodeFromIP.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node getCountryCodeFromIP.js ``` ## Next Steps diff --git a/sdk/maps/maps-geolocation-rest/samples/v1-beta/typescript/README.md b/sdk/maps/maps-geolocation-rest/samples/v1-beta/typescript/README.md index b6e2b06fc26c..ef8f4de223e2 100644 --- a/sdk/maps/maps-geolocation-rest/samples/v1-beta/typescript/README.md +++ b/sdk/maps/maps-geolocation-rest/samples/v1-beta/typescript/README.md @@ -51,7 +51,7 @@ node dist/getCountryCodeFromIP.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getCountryCodeFromIP.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getCountryCodeFromIP.js ``` ## Next Steps diff --git a/sdk/maps/maps-render-rest/package.json b/sdk/maps/maps-render-rest/package.json index d9544a45a057..99f4dd8eac40 100644 --- a/sdk/maps/maps-render-rest/package.json +++ b/sdk/maps/maps-render-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-render-rest/samples/v2-beta/javascript/README.md b/sdk/maps/maps-render-rest/samples/v2-beta/javascript/README.md index 65aa18642249..39c355a68539 100644 --- a/sdk/maps/maps-render-rest/samples/v2-beta/javascript/README.md +++ b/sdk/maps/maps-render-rest/samples/v2-beta/javascript/README.md @@ -47,7 +47,7 @@ node getCopyrightCaption.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node getCopyrightCaption.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node getCopyrightCaption.js ``` ## Next Steps diff --git a/sdk/maps/maps-render-rest/samples/v2-beta/typescript/README.md b/sdk/maps/maps-render-rest/samples/v2-beta/typescript/README.md index 79448fee1a1c..46c154d9f0f2 100644 --- a/sdk/maps/maps-render-rest/samples/v2-beta/typescript/README.md +++ b/sdk/maps/maps-render-rest/samples/v2-beta/typescript/README.md @@ -59,7 +59,7 @@ node dist/getCopyrightCaption.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getCopyrightCaption.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getCopyrightCaption.js ``` ## Next Steps diff --git a/sdk/maps/maps-route-rest/package.json b/sdk/maps/maps-route-rest/package.json index 3a3ae916934d..58a30ad937ba 100644 --- a/sdk/maps/maps-route-rest/package.json +++ b/sdk/maps/maps-route-rest/package.json @@ -55,11 +55,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -92,9 +92,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-route-rest/samples/v1-beta/javascript/README.md b/sdk/maps/maps-route-rest/samples/v1-beta/javascript/README.md index 77677d5fffd7..4d09ae63d438 100644 --- a/sdk/maps/maps-route-rest/samples/v1-beta/javascript/README.md +++ b/sdk/maps/maps-route-rest/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node directions.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node directions.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node directions.js ``` ## Next Steps diff --git a/sdk/maps/maps-route-rest/samples/v1-beta/typescript/README.md b/sdk/maps/maps-route-rest/samples/v1-beta/typescript/README.md index 8491c445db73..597820dec33c 100644 --- a/sdk/maps/maps-route-rest/samples/v1-beta/typescript/README.md +++ b/sdk/maps/maps-route-rest/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/directions.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/directions.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/directions.js ``` ## Next Steps diff --git a/sdk/maps/maps-search-rest/package.json b/sdk/maps/maps-search-rest/package.json index f6bcbb172f0c..4f86e8497210 100644 --- a/sdk/maps/maps-search-rest/package.json +++ b/sdk/maps/maps-search-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -70,9 +70,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-search-rest/samples/v2-beta/javascript/README.md b/sdk/maps/maps-search-rest/samples/v2-beta/javascript/README.md index 035ef5724c4e..0e0690e12c93 100644 --- a/sdk/maps/maps-search-rest/samples/v2-beta/javascript/README.md +++ b/sdk/maps/maps-search-rest/samples/v2-beta/javascript/README.md @@ -43,7 +43,7 @@ node geocoding.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node geocoding.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node geocoding.js ``` ## Next Steps diff --git a/sdk/maps/maps-search-rest/samples/v2-beta/typescript/README.md b/sdk/maps/maps-search-rest/samples/v2-beta/typescript/README.md index d6a73ca38825..5b2d72e865c0 100644 --- a/sdk/maps/maps-search-rest/samples/v2-beta/typescript/README.md +++ b/sdk/maps/maps-search-rest/samples/v2-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/geocoding.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/geocoding.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/geocoding.js ``` ## Next Steps diff --git a/sdk/maps/maps-timezone-rest/package.json b/sdk/maps/maps-timezone-rest/package.json index 9e84f791a4bf..b27ce15da651 100644 --- a/sdk/maps/maps-timezone-rest/package.json +++ b/sdk/maps/maps-timezone-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -70,9 +70,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-timezone-rest/samples/v1-beta/javascript/README.md b/sdk/maps/maps-timezone-rest/samples/v1-beta/javascript/README.md index 06cd24d0e6cc..ea31b08e73ad 100644 --- a/sdk/maps/maps-timezone-rest/samples/v1-beta/javascript/README.md +++ b/sdk/maps/maps-timezone-rest/samples/v1-beta/javascript/README.md @@ -44,7 +44,7 @@ node getIanaVersion.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env MAPS_RESOURCE_CLIENT_ID="" node getIanaVersion.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node getIanaVersion.js ``` [getTimezoneById]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/maps/maps-timezone-rest/samples/v1-beta/javascript/getTimezoneById.js diff --git a/sdk/maps/maps-timezone-rest/samples/v1-beta/typescript/README.md b/sdk/maps/maps-timezone-rest/samples/v1-beta/typescript/README.md index 67933cf7f8f0..9ccb58e1ec13 100644 --- a/sdk/maps/maps-timezone-rest/samples/v1-beta/typescript/README.md +++ b/sdk/maps/maps-timezone-rest/samples/v1-beta/typescript/README.md @@ -56,7 +56,7 @@ node dist/getIanaVersion.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getIanaVersion.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getIanaVersion.js ``` [getTimezoneById]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/maps/maps-timezone-rest/samples/v1-beta/typescript/src/getTimezoneById.ts diff --git a/sdk/mariadb/arm-mariadb/package.json b/sdk/mariadb/arm-mariadb/package.json index 79b1e2fb426d..87388df4d65a 100644 --- a/sdk/mariadb/arm-mariadb/package.json +++ b/sdk/mariadb/arm-mariadb/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/mariadb/arm-mariadb/samples/v2/javascript/README.md b/sdk/mariadb/arm-mariadb/samples/v2/javascript/README.md index 1611eca07865..a8365f20bef9 100644 --- a/sdk/mariadb/arm-mariadb/samples/v2/javascript/README.md +++ b/sdk/mariadb/arm-mariadb/samples/v2/javascript/README.md @@ -92,7 +92,7 @@ node advisorsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node advisorsGetSample.js +cross-env node advisorsGetSample.js ``` ## Next Steps diff --git a/sdk/mariadb/arm-mariadb/samples/v2/typescript/README.md b/sdk/mariadb/arm-mariadb/samples/v2/typescript/README.md index ed4735c7ef30..2efd784c0148 100644 --- a/sdk/mariadb/arm-mariadb/samples/v2/typescript/README.md +++ b/sdk/mariadb/arm-mariadb/samples/v2/typescript/README.md @@ -104,7 +104,7 @@ node dist/advisorsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/advisorsGetSample.js +cross-env node dist/advisorsGetSample.js ``` ## Next Steps diff --git a/sdk/marketplaceordering/arm-marketplaceordering/package.json b/sdk/marketplaceordering/arm-marketplaceordering/package.json index 295cf830753e..d2ad44ac4820 100644 --- a/sdk/marketplaceordering/arm-marketplaceordering/package.json +++ b/sdk/marketplaceordering/arm-marketplaceordering/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/javascript/README.md b/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/javascript/README.md index 0b0e83383010..621dadffda48 100644 --- a/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/javascript/README.md +++ b/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/javascript/README.md @@ -42,7 +42,7 @@ node marketplaceAgreementsCancelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MARKETPLACEORDERING_SUBSCRIPTION_ID="" node marketplaceAgreementsCancelSample.js +cross-env MARKETPLACEORDERING_SUBSCRIPTION_ID="" node marketplaceAgreementsCancelSample.js ``` ## Next Steps diff --git a/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/typescript/README.md b/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/typescript/README.md index c4dc5029f616..e5b22076a040 100644 --- a/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/typescript/README.md +++ b/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/typescript/README.md @@ -54,7 +54,7 @@ node dist/marketplaceAgreementsCancelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MARKETPLACEORDERING_SUBSCRIPTION_ID="" node dist/marketplaceAgreementsCancelSample.js +cross-env MARKETPLACEORDERING_SUBSCRIPTION_ID="" node dist/marketplaceAgreementsCancelSample.js ``` ## Next Steps diff --git a/sdk/metricsadvisor/ai-metrics-advisor-perf-tests/package.json b/sdk/metricsadvisor/ai-metrics-advisor-perf-tests/package.json index 30f2fcc629c9..075932c3a41c 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor-perf-tests/package.json +++ b/sdk/metricsadvisor/ai-metrics-advisor-perf-tests/package.json @@ -52,17 +52,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm test-dist types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm test-dist types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/metricsadvisor/ai-metrics-advisor/package.json b/sdk/metricsadvisor/ai-metrics-advisor/package.json index e1b3a241cd89..991d2cca1248 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/package.json +++ b/sdk/metricsadvisor/ai-metrics-advisor/package.json @@ -49,11 +49,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm dist-browser dist-test dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm dist-browser dist-test dist-test temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -87,9 +87,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md index 746e2a8433ac..f3133cf11130 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md @@ -60,7 +60,7 @@ node quickstart.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env METRICS_ADVISOR_ENDPOINT="" METRICS_ADVISOR_SUBSCRIPTION_KEY="" METRICS_ADVISOR_API_KEY="" METRICS_ADVISOR_SQL_SERVER_CONNECTION_STRING="" METRICS_ADVISOR_AZURE_SQL_SERVER_QUERY="" node quickstart.js +cross-env METRICS_ADVISOR_ENDPOINT="" METRICS_ADVISOR_SUBSCRIPTION_KEY="" METRICS_ADVISOR_API_KEY="" METRICS_ADVISOR_SQL_SERVER_CONNECTION_STRING="" METRICS_ADVISOR_AZURE_SQL_SERVER_QUERY="" node quickstart.js ``` ## Next Steps diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md index 90fc062decff..7b12db767cd9 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md @@ -72,7 +72,7 @@ node dist/quickstart.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env METRICS_ADVISOR_ENDPOINT="" METRICS_ADVISOR_SUBSCRIPTION_KEY="" METRICS_ADVISOR_API_KEY="" METRICS_ADVISOR_SQL_SERVER_CONNECTION_STRING="" METRICS_ADVISOR_AZURE_SQL_SERVER_QUERY="" node dist/quickstart.js +cross-env METRICS_ADVISOR_ENDPOINT="" METRICS_ADVISOR_SUBSCRIPTION_KEY="" METRICS_ADVISOR_API_KEY="" METRICS_ADVISOR_SQL_SERVER_CONNECTION_STRING="" METRICS_ADVISOR_AZURE_SQL_SERVER_QUERY="" node dist/quickstart.js ``` ## Next Steps diff --git a/sdk/migrate/arm-migrate/package.json b/sdk/migrate/arm-migrate/package.json index 5ac4e6fd7076..50ae729f1bd2 100644 --- a/sdk/migrate/arm-migrate/package.json +++ b/sdk/migrate/arm-migrate/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/migrate/arm-migrate/samples/v2/javascript/README.md b/sdk/migrate/arm-migrate/samples/v2/javascript/README.md index 6d4469794591..ad00b3a2b677 100644 --- a/sdk/migrate/arm-migrate/samples/v2/javascript/README.md +++ b/sdk/migrate/arm-migrate/samples/v2/javascript/README.md @@ -82,7 +82,7 @@ node assessedMachinesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node assessedMachinesGetSample.js +cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node assessedMachinesGetSample.js ``` ## Next Steps diff --git a/sdk/migrate/arm-migrate/samples/v2/typescript/README.md b/sdk/migrate/arm-migrate/samples/v2/typescript/README.md index efd665ebb1ac..2be2ea65128a 100644 --- a/sdk/migrate/arm-migrate/samples/v2/typescript/README.md +++ b/sdk/migrate/arm-migrate/samples/v2/typescript/README.md @@ -94,7 +94,7 @@ node dist/assessedMachinesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node dist/assessedMachinesGetSample.js +cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node dist/assessedMachinesGetSample.js ``` ## Next Steps diff --git a/sdk/migrate/arm-migrationassessment/package.json b/sdk/migrate/arm-migrationassessment/package.json index 44b659aad137..e4c06e95f2bf 100644 --- a/sdk/migrate/arm-migrationassessment/package.json +++ b/sdk/migrate/arm-migrationassessment/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/migrate/arm-migrationassessment/samples/v1-beta/javascript/README.md b/sdk/migrate/arm-migrationassessment/samples/v1-beta/javascript/README.md index e6f4a20ea040..92eed0cc80c6 100644 --- a/sdk/migrate/arm-migrationassessment/samples/v1-beta/javascript/README.md +++ b/sdk/migrate/arm-migrationassessment/samples/v1-beta/javascript/README.md @@ -113,7 +113,7 @@ node assessedMachinesOperationsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node assessedMachinesOperationsGetSample.js +cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node assessedMachinesOperationsGetSample.js ``` ## Next Steps diff --git a/sdk/migrate/arm-migrationassessment/samples/v1-beta/typescript/README.md b/sdk/migrate/arm-migrationassessment/samples/v1-beta/typescript/README.md index 6df60896f891..8eaeaa83dcbd 100644 --- a/sdk/migrate/arm-migrationassessment/samples/v1-beta/typescript/README.md +++ b/sdk/migrate/arm-migrationassessment/samples/v1-beta/typescript/README.md @@ -125,7 +125,7 @@ node dist/assessedMachinesOperationsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node dist/assessedMachinesOperationsGetSample.js +cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node dist/assessedMachinesOperationsGetSample.js ``` ## Next Steps diff --git a/sdk/migrationdiscovery/arm-migrationdiscoverysap/package.json b/sdk/migrationdiscovery/arm-migrationdiscoverysap/package.json index d4827ce802c0..9dd5f836f831 100644 --- a/sdk/migrationdiscovery/arm-migrationdiscoverysap/package.json +++ b/sdk/migrationdiscovery/arm-migrationdiscoverysap/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/javascript/README.md b/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/javascript/README.md index 8abe49d6e82e..7a8fe669f817 100644 --- a/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/javascript/README.md +++ b/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/javascript/README.md @@ -54,7 +54,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATIONDISCOVERY_SUBSCRIPTION_ID="" node operationsListSample.js +cross-env MIGRATIONDISCOVERY_SUBSCRIPTION_ID="" node operationsListSample.js ``` ## Next Steps diff --git a/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/typescript/README.md b/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/typescript/README.md index a178bf802dee..75c338fdbe6b 100644 --- a/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/typescript/README.md +++ b/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/typescript/README.md @@ -66,7 +66,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATIONDISCOVERY_SUBSCRIPTION_ID="" node dist/operationsListSample.js +cross-env MIGRATIONDISCOVERY_SUBSCRIPTION_ID="" node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/mobilenetwork/arm-mobilenetwork/package.json b/sdk/mobilenetwork/arm-mobilenetwork/package.json index f34b82bc2557..f416d940ad4f 100644 --- a/sdk/mobilenetwork/arm-mobilenetwork/package.json +++ b/sdk/mobilenetwork/arm-mobilenetwork/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/javascript/README.md b/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/javascript/README.md index 45762d383e96..07c2860b267c 100644 --- a/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/javascript/README.md +++ b/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/javascript/README.md @@ -121,7 +121,7 @@ node attachedDataNetworksCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MOBILENETWORK_SUBSCRIPTION_ID="" MOBILENETWORK_RESOURCE_GROUP="" node attachedDataNetworksCreateOrUpdateSample.js +cross-env MOBILENETWORK_SUBSCRIPTION_ID="" MOBILENETWORK_RESOURCE_GROUP="" node attachedDataNetworksCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/typescript/README.md b/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/typescript/README.md index 5fbf5432d904..b2fac7ddfaed 100644 --- a/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/typescript/README.md +++ b/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/typescript/README.md @@ -133,7 +133,7 @@ node dist/attachedDataNetworksCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MOBILENETWORK_SUBSCRIPTION_ID="" MOBILENETWORK_RESOURCE_GROUP="" node dist/attachedDataNetworksCreateOrUpdateSample.js +cross-env MOBILENETWORK_SUBSCRIPTION_ID="" MOBILENETWORK_RESOURCE_GROUP="" node dist/attachedDataNetworksCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/mongocluster/arm-mongocluster/package.json b/sdk/mongocluster/arm-mongocluster/package.json index 83b9ee09f928..6a19962e9eee 100644 --- a/sdk/mongocluster/arm-mongocluster/package.json +++ b/sdk/mongocluster/arm-mongocluster/package.json @@ -67,47 +67,51 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, "devDependencies": { - "@azure-tools/test-credential": "^2.0.0", - "@azure-tools/test-recorder": "^4.1.0", - "@azure-tools/test-utils-vitest": "^1.0.0", - "@azure/dev-tool": "^1.0.0", - "@azure/eslint-plugin-azure-sdk": "^3.0.0", - "@azure/identity": "^4.9.0", - "@types/node": "^20.0.0", - "eslint": "^9.9.0", - "@vitest/browser": "^3.0.9", - "@vitest/coverage-istanbul": "^3.0.9", - "dotenv": "^16.0.0", - "playwright": "^1.52.0", - "typescript": "~5.8.2", - "vitest": "^3.0.9" + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", + "@azure/dev-tool": "workspace:^", + "@azure/eslint-plugin-azure-sdk": "workspace:^", + "@azure/identity": "catalog:internal", + "@types/node": "catalog:", + "@vitest/browser": "catalog:testing", + "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", + "eslint": "catalog:", + "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", + "vitest": "catalog:testing" }, "scripts": { - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", + "extract-api": "rimraf review && dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "test:node": "dev-tool run test:vitest", + "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/mongocluster/arm-mongocluster/samples/v1-beta/javascript/README.md b/sdk/mongocluster/arm-mongocluster/samples/v1-beta/javascript/README.md index a55713b121e6..ae4c44b41581 100644 --- a/sdk/mongocluster/arm-mongocluster/samples/v1-beta/javascript/README.md +++ b/sdk/mongocluster/arm-mongocluster/samples/v1-beta/javascript/README.md @@ -60,7 +60,7 @@ node firewallRulesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node firewallRulesCreateOrUpdateSample.js +cross-env node firewallRulesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/mongocluster/arm-mongocluster/samples/v1-beta/typescript/README.md b/sdk/mongocluster/arm-mongocluster/samples/v1-beta/typescript/README.md index bde631d0a486..2a4a6283afcb 100644 --- a/sdk/mongocluster/arm-mongocluster/samples/v1-beta/typescript/README.md +++ b/sdk/mongocluster/arm-mongocluster/samples/v1-beta/typescript/README.md @@ -72,7 +72,7 @@ node dist/firewallRulesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/firewallRulesCreateOrUpdateSample.js +cross-env node dist/firewallRulesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/mongodbatlas/arm-mongodbatlas/package.json b/sdk/mongodbatlas/arm-mongodbatlas/package.json index afa35d21e681..f0aa4a262979 100644 --- a/sdk/mongodbatlas/arm-mongodbatlas/package.json +++ b/sdk/mongodbatlas/arm-mongodbatlas/package.json @@ -64,12 +64,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -81,22 +81,26 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/javascript/README.md b/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/javascript/README.md index 4320b8cd1255..4c83c6813bde 100644 --- a/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/javascript/README.md +++ b/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/typescript/README.md b/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/typescript/README.md index b939f39b78f8..8b0c5b661d6b 100644 --- a/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/typescript/README.md +++ b/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/package.json b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/package.json index 1573c16d0f47..4d83d8372830 100644 --- a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/package.json +++ b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index d8bc7084983e..f7886f89d1fc 100644 --- a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -46,7 +46,7 @@ node diagnosticSettingsCategoryGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node diagnosticSettingsCategoryGetSample.js +cross-env node diagnosticSettingsCategoryGetSample.js ``` ## Next Steps diff --git a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 3179be8f0424..85927901c77e 100644 --- a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -58,7 +58,7 @@ node dist/diagnosticSettingsCategoryGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/diagnosticSettingsCategoryGetSample.js +cross-env node dist/diagnosticSettingsCategoryGetSample.js ``` ## Next Steps diff --git a/sdk/monitor/arm-monitor/package.json b/sdk/monitor/arm-monitor/package.json index 821ba78e2ce8..cedb236ff40c 100644 --- a/sdk/monitor/arm-monitor/package.json +++ b/sdk/monitor/arm-monitor/package.json @@ -42,8 +42,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -62,7 +65,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/monitor/arm-monitor/samples/v8-beta/javascript/README.md b/sdk/monitor/arm-monitor/samples/v8-beta/javascript/README.md index 97ae9b925445..d6de556dedac 100644 --- a/sdk/monitor/arm-monitor/samples/v8-beta/javascript/README.md +++ b/sdk/monitor/arm-monitor/samples/v8-beta/javascript/README.md @@ -152,7 +152,7 @@ node actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MONITOR_SUBSCRIPTION_ID="" MONITOR_RESOURCE_GROUP="" node actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js +cross-env MONITOR_SUBSCRIPTION_ID="" MONITOR_RESOURCE_GROUP="" node actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js ``` ## Next Steps diff --git a/sdk/monitor/arm-monitor/samples/v8-beta/typescript/README.md b/sdk/monitor/arm-monitor/samples/v8-beta/typescript/README.md index 8015345fec98..d4879d283a75 100644 --- a/sdk/monitor/arm-monitor/samples/v8-beta/typescript/README.md +++ b/sdk/monitor/arm-monitor/samples/v8-beta/typescript/README.md @@ -164,7 +164,7 @@ node dist/actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MONITOR_SUBSCRIPTION_ID="" MONITOR_RESOURCE_GROUP="" node dist/actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js +cross-env MONITOR_SUBSCRIPTION_ID="" MONITOR_RESOURCE_GROUP="" node dist/actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-ingestion-perf-tests/package.json b/sdk/monitor/monitor-ingestion-perf-tests/package.json index 4cdeadcc9207..57499e8f6ad2 100644 --- a/sdk/monitor/monitor-ingestion-perf-tests/package.json +++ b/sdk/monitor/monitor-ingestion-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm test-dist types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm test-dist types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/monitor/monitor-ingestion/package.json b/sdk/monitor/monitor-ingestion/package.json index c10471c840dd..75f54c9c5125 100644 --- a/sdk/monitor/monitor-ingestion/package.json +++ b/sdk/monitor/monitor-ingestion/package.json @@ -50,11 +50,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "dev-tool samples run samples-dev", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "echo Obsolete", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -89,9 +89,13 @@ "@types/pako": "^2.0.0", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/monitor/monitor-ingestion/samples/v1/javascript/README.md b/sdk/monitor/monitor-ingestion/samples/v1/javascript/README.md index 7c521f66a19a..57d9d4b0ef61 100644 --- a/sdk/monitor/monitor-ingestion/samples/v1/javascript/README.md +++ b/sdk/monitor/monitor-ingestion/samples/v1/javascript/README.md @@ -44,7 +44,7 @@ node defaultConcurrency.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOGS_INGESTION_ENDPOINT="" DATA_COLLECTION_RULE_ID="" STREAM_NAME="" node defaultConcurrency.js +cross-env LOGS_INGESTION_ENDPOINT="" DATA_COLLECTION_RULE_ID="" STREAM_NAME="" node defaultConcurrency.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-ingestion/samples/v1/typescript/README.md b/sdk/monitor/monitor-ingestion/samples/v1/typescript/README.md index f50958bd8617..c15e444a9ce6 100644 --- a/sdk/monitor/monitor-ingestion/samples/v1/typescript/README.md +++ b/sdk/monitor/monitor-ingestion/samples/v1/typescript/README.md @@ -56,7 +56,7 @@ node dist/defaultConcurrency.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOGS_INGESTION_ENDPOINT="" DATA_COLLECTION_RULE_ID="" STREAM_NAME="" node dist/defaultConcurrency.js +cross-env LOGS_INGESTION_ENDPOINT="" DATA_COLLECTION_RULE_ID="" STREAM_NAME="" node dist/defaultConcurrency.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-opentelemetry-exporter/package.json b/sdk/monitor/monitor-opentelemetry-exporter/package.json index 1121310e2ae0..a86ae1951596 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/package.json +++ b/sdk/monitor/monitor-opentelemetry-exporter/package.json @@ -10,11 +10,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist-esm types dist", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist-esm types dist", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -79,10 +79,14 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "nock": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/javascript/README.md b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/javascript/README.md index de26ef0c371f..ca3020dbe8dc 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/javascript/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/javascript/README.md @@ -51,7 +51,7 @@ node basicTracerNode.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node basicTracerNode.js +cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node basicTracerNode.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/typescript/README.md b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/typescript/README.md index 107c257e2b4b..c1f8925bd535 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/typescript/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/typescript/README.md @@ -63,7 +63,7 @@ node dist/basicTracerNode.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node dist/basicTracerNode.js +cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node dist/basicTracerNode.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/javascript/README.md b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/javascript/README.md index 653ac555b9c8..19d70299bde5 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/javascript/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/javascript/README.md @@ -49,7 +49,7 @@ node basicTracerNode.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node basicTracerNode.js +cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node basicTracerNode.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/typescript/README.md b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/typescript/README.md index dc1c84ca3a3b..85ab39b4f933 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/typescript/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/typescript/README.md @@ -61,7 +61,7 @@ node dist/basicTracerNode.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node dist/basicTracerNode.js +cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node dist/basicTracerNode.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-opentelemetry-perf-tests/package.json b/sdk/monitor/monitor-opentelemetry-perf-tests/package.json index a19d2cbc3efe..b2e2a36e1655 100644 --- a/sdk/monitor/monitor-opentelemetry-perf-tests/package.json +++ b/sdk/monitor/monitor-opentelemetry-perf-tests/package.json @@ -55,17 +55,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/monitor/monitor-opentelemetry/package.json b/sdk/monitor/monitor-opentelemetry/package.json index fb06aa5803a1..282d194ae6e5 100644 --- a/sdk/monitor/monitor-opentelemetry/package.json +++ b/sdk/monitor/monitor-opentelemetry/package.json @@ -10,11 +10,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -59,8 +59,12 @@ "@opentelemetry/exporter-metrics-otlp-http": "^0.204.0", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/monitor/monitor-query-logs/package.json b/sdk/monitor/monitor-query-logs/package.json index f620905b0bbb..9329ffbc6ce2 100644 --- a/sdk/monitor/monitor-query-logs/package.json +++ b/sdk/monitor/monitor-query-logs/package.json @@ -18,11 +18,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", "execute:samples": "echo Obsolete", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -55,10 +55,10 @@ "sideEffects": false, "prettier": "@azure/eslint-plugin-azure-sdk/prettier.json", "dependencies": { + "@azure-rest/core-client": "^2.5.0", "@azure/core-auth": "^1.9.0", "@azure/core-client": "^1.9.2", "@azure/core-paging": "^1.6.2", - "@azure-rest/core-client": "^2.5.0", "@azure/core-rest-pipeline": "^1.19.0", "@azure/core-tracing": "^1.2.0", "@azure/core-util": "^1.11.0", @@ -80,9 +80,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/monitor/monitor-query-logs/samples/v1/javascript/README.md b/sdk/monitor/monitor-query-logs/samples/v1/javascript/README.md index 88c88acf1abc..73023752cb18 100644 --- a/sdk/monitor/monitor-query-logs/samples/v1/javascript/README.md +++ b/sdk/monitor/monitor-query-logs/samples/v1/javascript/README.md @@ -42,7 +42,7 @@ node logsQuery.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MONITOR_WORKSPACE_ID="" node logsQuery.js +cross-env MONITOR_WORKSPACE_ID="" node logsQuery.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-query-logs/samples/v1/typescript/README.md b/sdk/monitor/monitor-query-logs/samples/v1/typescript/README.md index ecbee74b72d2..027bfba15986 100644 --- a/sdk/monitor/monitor-query-logs/samples/v1/typescript/README.md +++ b/sdk/monitor/monitor-query-logs/samples/v1/typescript/README.md @@ -54,7 +54,7 @@ node dist/logsQuery.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MONITOR_WORKSPACE_ID="" node dist/logsQuery.js +cross-env MONITOR_WORKSPACE_ID="" node dist/logsQuery.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-query-metrics/package.json b/sdk/monitor/monitor-query-metrics/package.json index f5e53289a468..e902e49123a5 100644 --- a/sdk/monitor/monitor-query-metrics/package.json +++ b/sdk/monitor/monitor-query-metrics/package.json @@ -10,11 +10,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", "execute:samples": "echo Obsolete", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -47,8 +47,8 @@ "sideEffects": false, "prettier": "@azure/eslint-plugin-azure-sdk/prettier.json", "dependencies": { - "@azure/core-auth": "^1.9.0", "@azure-rest/core-client": "^2.5.0", + "@azure/core-auth": "^1.9.0", "@azure/core-rest-pipeline": "^1.19.0", "@azure/core-tracing": "^1.2.0", "@azure/logger": "^1.1.4", @@ -69,9 +69,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/monitor/monitor-query-metrics/samples/v1/javascript/README.md b/sdk/monitor/monitor-query-metrics/samples/v1/javascript/README.md index a71c3df20fb5..1963117c6949 100644 --- a/sdk/monitor/monitor-query-metrics/samples/v1/javascript/README.md +++ b/sdk/monitor/monitor-query-metrics/samples/v1/javascript/README.md @@ -51,7 +51,7 @@ node queryMultipleResources.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env METRICS_ENDPOINT="" METRICS_RESOURCE_IDS="" METRICS_RESOURCE_NAMESPACE="" node queryMultipleResources.js +cross-env METRICS_ENDPOINT="" METRICS_RESOURCE_IDS="" METRICS_RESOURCE_NAMESPACE="" node queryMultipleResources.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-query-metrics/samples/v1/typescript/README.md b/sdk/monitor/monitor-query-metrics/samples/v1/typescript/README.md index 4ad95e7b9bb1..b904a329d2b3 100644 --- a/sdk/monitor/monitor-query-metrics/samples/v1/typescript/README.md +++ b/sdk/monitor/monitor-query-metrics/samples/v1/typescript/README.md @@ -63,7 +63,7 @@ node dist/queryMultipleResources.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env METRICS_ENDPOINT="" METRICS_RESOURCE_IDS="" METRICS_RESOURCE_NAMESPACE="" node dist/queryMultipleResources.js +cross-env METRICS_ENDPOINT="" METRICS_RESOURCE_IDS="" METRICS_RESOURCE_NAMESPACE="" node dist/queryMultipleResources.js ``` ## Next Steps diff --git a/sdk/msi/arm-msi/package.json b/sdk/msi/arm-msi/package.json index 086798fc30db..f4d1ae785e96 100644 --- a/sdk/msi/arm-msi/package.json +++ b/sdk/msi/arm-msi/package.json @@ -8,9 +8,9 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -28,18 +28,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/msi/arm-msi/samples/v2/javascript/README.md b/sdk/msi/arm-msi/samples/v2/javascript/README.md index f7ab04e3b3fc..93b51eded625 100644 --- a/sdk/msi/arm-msi/samples/v2/javascript/README.md +++ b/sdk/msi/arm-msi/samples/v2/javascript/README.md @@ -48,7 +48,7 @@ node federatedIdentityCredentialsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MSI_SUBSCRIPTION_ID="" MSI_RESOURCE_GROUP="" node federatedIdentityCredentialsCreateOrUpdateSample.js +cross-env MSI_SUBSCRIPTION_ID="" MSI_RESOURCE_GROUP="" node federatedIdentityCredentialsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/msi/arm-msi/samples/v2/typescript/README.md b/sdk/msi/arm-msi/samples/v2/typescript/README.md index 7e0a51fec54d..ab7021952c07 100644 --- a/sdk/msi/arm-msi/samples/v2/typescript/README.md +++ b/sdk/msi/arm-msi/samples/v2/typescript/README.md @@ -60,7 +60,7 @@ node dist/federatedIdentityCredentialsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MSI_SUBSCRIPTION_ID="" MSI_RESOURCE_GROUP="" node dist/federatedIdentityCredentialsCreateOrUpdateSample.js +cross-env MSI_SUBSCRIPTION_ID="" MSI_RESOURCE_GROUP="" node dist/federatedIdentityCredentialsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/mysql/arm-mysql-flexible/package.json b/sdk/mysql/arm-mysql-flexible/package.json index 06c89e57bf65..a48c953bf061 100644 --- a/sdk/mysql/arm-mysql-flexible/package.json +++ b/sdk/mysql/arm-mysql-flexible/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/mysql/arm-mysql-flexible/samples/v4-beta/javascript/README.md b/sdk/mysql/arm-mysql-flexible/samples/v4-beta/javascript/README.md index 125341481a5e..bd37630ebcf6 100644 --- a/sdk/mysql/arm-mysql-flexible/samples/v4-beta/javascript/README.md +++ b/sdk/mysql/arm-mysql-flexible/samples/v4-beta/javascript/README.md @@ -93,7 +93,7 @@ node advancedThreatProtectionSettingsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MYSQL_SUBSCRIPTION_ID="" MYSQL_RESOURCE_GROUP="" node advancedThreatProtectionSettingsGetSample.js +cross-env MYSQL_SUBSCRIPTION_ID="" MYSQL_RESOURCE_GROUP="" node advancedThreatProtectionSettingsGetSample.js ``` ## Next Steps diff --git a/sdk/mysql/arm-mysql-flexible/samples/v4-beta/typescript/README.md b/sdk/mysql/arm-mysql-flexible/samples/v4-beta/typescript/README.md index aa44ff1d6f9a..cb4e63544475 100644 --- a/sdk/mysql/arm-mysql-flexible/samples/v4-beta/typescript/README.md +++ b/sdk/mysql/arm-mysql-flexible/samples/v4-beta/typescript/README.md @@ -105,7 +105,7 @@ node dist/advancedThreatProtectionSettingsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MYSQL_SUBSCRIPTION_ID="" MYSQL_RESOURCE_GROUP="" node dist/advancedThreatProtectionSettingsGetSample.js +cross-env MYSQL_SUBSCRIPTION_ID="" MYSQL_RESOURCE_GROUP="" node dist/advancedThreatProtectionSettingsGetSample.js ``` ## Next Steps diff --git a/sdk/mysql/arm-mysql/package.json b/sdk/mysql/arm-mysql/package.json index 8e992a65c283..ad35fbed9d03 100644 --- a/sdk/mysql/arm-mysql/package.json +++ b/sdk/mysql/arm-mysql/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/mysql/arm-mysql/samples/v5/javascript/README.md b/sdk/mysql/arm-mysql/samples/v5/javascript/README.md index 6cbc96de01dd..5767d347f896 100644 --- a/sdk/mysql/arm-mysql/samples/v5/javascript/README.md +++ b/sdk/mysql/arm-mysql/samples/v5/javascript/README.md @@ -101,7 +101,7 @@ node advisorsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node advisorsGetSample.js +cross-env node advisorsGetSample.js ``` ## Next Steps diff --git a/sdk/mysql/arm-mysql/samples/v5/typescript/README.md b/sdk/mysql/arm-mysql/samples/v5/typescript/README.md index 68b586e0969e..cf8f9677b345 100644 --- a/sdk/mysql/arm-mysql/samples/v5/typescript/README.md +++ b/sdk/mysql/arm-mysql/samples/v5/typescript/README.md @@ -113,7 +113,7 @@ node dist/advisorsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/advisorsGetSample.js +cross-env node dist/advisorsGetSample.js ``` ## Next Steps diff --git a/sdk/neonpostgres/arm-neonpostgres/package.json b/sdk/neonpostgres/arm-neonpostgres/package.json index 5a0d193176a1..2191e4b484f0 100644 --- a/sdk/neonpostgres/arm-neonpostgres/package.json +++ b/sdk/neonpostgres/arm-neonpostgres/package.json @@ -87,20 +87,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/neonpostgres/arm-neonpostgres/samples/v1/javascript/README.md b/sdk/neonpostgres/arm-neonpostgres/samples/v1/javascript/README.md index f1f62b22e194..df4d7ede63f1 100644 --- a/sdk/neonpostgres/arm-neonpostgres/samples/v1/javascript/README.md +++ b/sdk/neonpostgres/arm-neonpostgres/samples/v1/javascript/README.md @@ -75,7 +75,7 @@ node branchesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node branchesCreateOrUpdateSample.js +cross-env node branchesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/neonpostgres/arm-neonpostgres/samples/v1/typescript/README.md b/sdk/neonpostgres/arm-neonpostgres/samples/v1/typescript/README.md index e3b044fddf4a..4811435968c7 100644 --- a/sdk/neonpostgres/arm-neonpostgres/samples/v1/typescript/README.md +++ b/sdk/neonpostgres/arm-neonpostgres/samples/v1/typescript/README.md @@ -87,7 +87,7 @@ node dist/branchesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/branchesCreateOrUpdateSample.js +cross-env node dist/branchesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/netapp/arm-netapp/package.json b/sdk/netapp/arm-netapp/package.json index 78e2a3758c74..7a3517a83f82 100644 --- a/sdk/netapp/arm-netapp/package.json +++ b/sdk/netapp/arm-netapp/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,18 +30,22 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -55,21 +59,21 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "prepack": "npm run build", - "pack": "npm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "integration-test": "npm run integration-test:node && npm run integration-test:browser", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", + "prepack": "npm run build", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", + "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", "unit-test": "npm run unit-test:node && npm run unit-test:browser", - "integration-test": "npm run integration-test:node && npm run integration-test:browser" + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/netapp/arm-netapp/samples/v21/javascript/README.md b/sdk/netapp/arm-netapp/samples/v21/javascript/README.md index 2ea9d21b74b5..d8c26d6ffd56 100644 --- a/sdk/netapp/arm-netapp/samples/v21/javascript/README.md +++ b/sdk/netapp/arm-netapp/samples/v21/javascript/README.md @@ -147,7 +147,7 @@ node accountsChangeKeyVaultSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETAPP_SUBSCRIPTION_ID="" NETAPP_RESOURCE_GROUP="" node accountsChangeKeyVaultSample.js +cross-env NETAPP_SUBSCRIPTION_ID="" NETAPP_RESOURCE_GROUP="" node accountsChangeKeyVaultSample.js ``` ## Next Steps diff --git a/sdk/netapp/arm-netapp/samples/v21/typescript/README.md b/sdk/netapp/arm-netapp/samples/v21/typescript/README.md index b645a768849a..541bdd2b3696 100644 --- a/sdk/netapp/arm-netapp/samples/v21/typescript/README.md +++ b/sdk/netapp/arm-netapp/samples/v21/typescript/README.md @@ -159,7 +159,7 @@ node dist/accountsChangeKeyVaultSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETAPP_SUBSCRIPTION_ID="" NETAPP_RESOURCE_GROUP="" node dist/accountsChangeKeyVaultSample.js +cross-env NETAPP_SUBSCRIPTION_ID="" NETAPP_RESOURCE_GROUP="" node dist/accountsChangeKeyVaultSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network-profile-2020-09-01-hybrid/package.json b/sdk/network/arm-network-profile-2020-09-01-hybrid/package.json index 9aa1c619e310..e3708aef8180 100644 --- a/sdk/network/arm-network-profile-2020-09-01-hybrid/package.json +++ b/sdk/network/arm-network-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 7ebcfc189436..aa99a5b92faa 100644 --- a/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -148,7 +148,7 @@ node defaultSecurityRulesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node defaultSecurityRulesGetSample.js +cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node defaultSecurityRulesGetSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index efc7ae4e94d0..1d4855df857d 100644 --- a/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -160,7 +160,7 @@ node dist/defaultSecurityRulesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node dist/defaultSecurityRulesGetSample.js +cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node dist/defaultSecurityRulesGetSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network-rest/package.json b/sdk/network/arm-network-rest/package.json index 8c3db36edf4c..ee02e581eb6e 100644 --- a/sdk/network/arm-network-rest/package.json +++ b/sdk/network/arm-network-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/network/arm-network-rest/samples/v1-beta/javascript/README.md b/sdk/network/arm-network-rest/samples/v1-beta/javascript/README.md index ebd258c51934..3e6991baeee4 100644 --- a/sdk/network/arm-network-rest/samples/v1-beta/javascript/README.md +++ b/sdk/network/arm-network-rest/samples/v1-beta/javascript/README.md @@ -649,7 +649,7 @@ node adminRuleCollectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node adminRuleCollectionsCreateOrUpdateSample.js +cross-env node adminRuleCollectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network-rest/samples/v1-beta/typescript/README.md b/sdk/network/arm-network-rest/samples/v1-beta/typescript/README.md index 314ff5c735d8..92dbe4a40e09 100644 --- a/sdk/network/arm-network-rest/samples/v1-beta/typescript/README.md +++ b/sdk/network/arm-network-rest/samples/v1-beta/typescript/README.md @@ -661,7 +661,7 @@ node dist/adminRuleCollectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/adminRuleCollectionsCreateOrUpdateSample.js +cross-env node dist/adminRuleCollectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network/package.json b/sdk/network/arm-network/package.json index 0ee98309d936..8edda8696c65 100644 --- a/sdk/network/arm-network/package.json +++ b/sdk/network/arm-network/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/network/arm-network/samples/v34/javascript/README.md b/sdk/network/arm-network/samples/v34/javascript/README.md index 330b38eb0a28..f59b675f78c0 100644 --- a/sdk/network/arm-network/samples/v34/javascript/README.md +++ b/sdk/network/arm-network/samples/v34/javascript/README.md @@ -763,7 +763,7 @@ node adminRuleCollectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node adminRuleCollectionsCreateOrUpdateSample.js +cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node adminRuleCollectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network/samples/v34/typescript/README.md b/sdk/network/arm-network/samples/v34/typescript/README.md index 7f00566c5fab..93b527b5107b 100644 --- a/sdk/network/arm-network/samples/v34/typescript/README.md +++ b/sdk/network/arm-network/samples/v34/typescript/README.md @@ -775,7 +775,7 @@ node dist/adminRuleCollectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node dist/adminRuleCollectionsCreateOrUpdateSample.js +cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node dist/adminRuleCollectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/networkcloud/arm-networkcloud/package.json b/sdk/networkcloud/arm-networkcloud/package.json index b4bd77db8b0d..7116cbf62a25 100644 --- a/sdk/networkcloud/arm-networkcloud/package.json +++ b/sdk/networkcloud/arm-networkcloud/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/networkcloud/arm-networkcloud/samples/v1/javascript/README.md b/sdk/networkcloud/arm-networkcloud/samples/v1/javascript/README.md index 874b2cf8f0e9..4cd14a88fd40 100644 --- a/sdk/networkcloud/arm-networkcloud/samples/v1/javascript/README.md +++ b/sdk/networkcloud/arm-networkcloud/samples/v1/javascript/README.md @@ -162,7 +162,7 @@ node agentPoolsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORKCLOUD_SUBSCRIPTION_ID="" NETWORKCLOUD_RESOURCE_GROUP="" node agentPoolsCreateOrUpdateSample.js +cross-env NETWORKCLOUD_SUBSCRIPTION_ID="" NETWORKCLOUD_RESOURCE_GROUP="" node agentPoolsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/networkcloud/arm-networkcloud/samples/v1/typescript/README.md b/sdk/networkcloud/arm-networkcloud/samples/v1/typescript/README.md index 800c202842c2..74de7e1c6853 100644 --- a/sdk/networkcloud/arm-networkcloud/samples/v1/typescript/README.md +++ b/sdk/networkcloud/arm-networkcloud/samples/v1/typescript/README.md @@ -174,7 +174,7 @@ node dist/agentPoolsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORKCLOUD_SUBSCRIPTION_ID="" NETWORKCLOUD_RESOURCE_GROUP="" node dist/agentPoolsCreateOrUpdateSample.js +cross-env NETWORKCLOUD_SUBSCRIPTION_ID="" NETWORKCLOUD_RESOURCE_GROUP="" node dist/agentPoolsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/networkfunction/arm-networkfunction/package.json b/sdk/networkfunction/arm-networkfunction/package.json index 6193add23a3d..67fcc4539080 100644 --- a/sdk/networkfunction/arm-networkfunction/package.json +++ b/sdk/networkfunction/arm-networkfunction/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/networkfunction/arm-networkfunction/samples/v2/javascript/README.md b/sdk/networkfunction/arm-networkfunction/samples/v2/javascript/README.md index 9e069e36fd27..3c06870be602 100644 --- a/sdk/networkfunction/arm-networkfunction/samples/v2/javascript/README.md +++ b/sdk/networkfunction/arm-networkfunction/samples/v2/javascript/README.md @@ -48,7 +48,7 @@ node azureTrafficCollectorsByResourceGroupListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node azureTrafficCollectorsByResourceGroupListSample.js +cross-env node azureTrafficCollectorsByResourceGroupListSample.js ``` ## Next Steps diff --git a/sdk/networkfunction/arm-networkfunction/samples/v2/typescript/README.md b/sdk/networkfunction/arm-networkfunction/samples/v2/typescript/README.md index eae839dd0859..bd606ceebbe8 100644 --- a/sdk/networkfunction/arm-networkfunction/samples/v2/typescript/README.md +++ b/sdk/networkfunction/arm-networkfunction/samples/v2/typescript/README.md @@ -60,7 +60,7 @@ node dist/azureTrafficCollectorsByResourceGroupListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/azureTrafficCollectorsByResourceGroupListSample.js +cross-env node dist/azureTrafficCollectorsByResourceGroupListSample.js ``` ## Next Steps diff --git a/sdk/newrelicobservability/arm-newrelicobservability/package.json b/sdk/newrelicobservability/arm-newrelicobservability/package.json index cb782822e87c..268ffd0a8c5a 100644 --- a/sdk/newrelicobservability/arm-newrelicobservability/package.json +++ b/sdk/newrelicobservability/arm-newrelicobservability/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/javascript/README.md b/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/javascript/README.md index 814af836e5d5..9c2de6e8321c 100644 --- a/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/javascript/README.md +++ b/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/javascript/README.md @@ -66,7 +66,7 @@ node accountsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NEWRELICOBSERVABILITY_SUBSCRIPTION_ID="" node accountsListSample.js +cross-env NEWRELICOBSERVABILITY_SUBSCRIPTION_ID="" node accountsListSample.js ``` ## Next Steps diff --git a/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/typescript/README.md b/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/typescript/README.md index 668c7d55846a..0042436ab03b 100644 --- a/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/typescript/README.md +++ b/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/typescript/README.md @@ -78,7 +78,7 @@ node dist/accountsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NEWRELICOBSERVABILITY_SUBSCRIPTION_ID="" node dist/accountsListSample.js +cross-env NEWRELICOBSERVABILITY_SUBSCRIPTION_ID="" node dist/accountsListSample.js ``` ## Next Steps diff --git a/sdk/nginx/arm-nginx/package.json b/sdk/nginx/arm-nginx/package.json index fee1c6f40c43..9aa5e328ce19 100644 --- a/sdk/nginx/arm-nginx/package.json +++ b/sdk/nginx/arm-nginx/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/nginx/arm-nginx/samples/v4-beta/javascript/README.md b/sdk/nginx/arm-nginx/samples/v4-beta/javascript/README.md index 1c12308866e9..8207ca3a418b 100644 --- a/sdk/nginx/arm-nginx/samples/v4-beta/javascript/README.md +++ b/sdk/nginx/arm-nginx/samples/v4-beta/javascript/README.md @@ -56,7 +56,7 @@ node apiKeysCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NGINX_SUBSCRIPTION_ID="" NGINX_RESOURCE_GROUP="" node apiKeysCreateOrUpdateSample.js +cross-env NGINX_SUBSCRIPTION_ID="" NGINX_RESOURCE_GROUP="" node apiKeysCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/nginx/arm-nginx/samples/v4-beta/typescript/README.md b/sdk/nginx/arm-nginx/samples/v4-beta/typescript/README.md index 000567c9fc52..7943c3e04b4c 100644 --- a/sdk/nginx/arm-nginx/samples/v4-beta/typescript/README.md +++ b/sdk/nginx/arm-nginx/samples/v4-beta/typescript/README.md @@ -68,7 +68,7 @@ node dist/apiKeysCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NGINX_SUBSCRIPTION_ID="" NGINX_RESOURCE_GROUP="" node dist/apiKeysCreateOrUpdateSample.js +cross-env NGINX_SUBSCRIPTION_ID="" NGINX_RESOURCE_GROUP="" node dist/apiKeysCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/notificationhubs/arm-notificationhubs/package.json b/sdk/notificationhubs/arm-notificationhubs/package.json index d45d6fe79126..6c80e00ebfe6 100644 --- a/sdk/notificationhubs/arm-notificationhubs/package.json +++ b/sdk/notificationhubs/arm-notificationhubs/package.json @@ -39,8 +39,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,13 +63,13 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint package.json src test", - "lint:fix": "dev-tool run vendored eslint package.json src test --fix --fix-type [problem,suggestion]", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", "test:browser": "echo skipped", diff --git a/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/javascript/README.md b/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/javascript/README.md index 0c3e693f7bba..20a99a4a1c7d 100644 --- a/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/javascript/README.md +++ b/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/javascript/README.md @@ -71,7 +71,7 @@ node namespacesCheckAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NOTIFICATIONHUBS_SUBSCRIPTION_ID="" node namespacesCheckAvailabilitySample.js +cross-env NOTIFICATIONHUBS_SUBSCRIPTION_ID="" node namespacesCheckAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/typescript/README.md b/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/typescript/README.md index 09fec1fef4a0..09adb3884d70 100644 --- a/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/typescript/README.md +++ b/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/typescript/README.md @@ -83,7 +83,7 @@ node dist/namespacesCheckAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NOTIFICATIONHUBS_SUBSCRIPTION_ID="" node dist/namespacesCheckAvailabilitySample.js +cross-env NOTIFICATIONHUBS_SUBSCRIPTION_ID="" node dist/namespacesCheckAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/notificationhubs/notification-hubs/package.json b/sdk/notificationhubs/notification-hubs/package.json index df950e3f02a6..f9bfebfaa03c 100644 --- a/sdk/notificationhubs/notification-hubs/package.json +++ b/sdk/notificationhubs/notification-hubs/package.json @@ -19,10 +19,10 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -70,9 +70,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/notificationhubs/notification-hubs/samples/v2/javascript/README.md b/sdk/notificationhubs/notification-hubs/samples/v2/javascript/README.md index 7e218cfa9bbe..2dfb8c28fcf9 100644 --- a/sdk/notificationhubs/notification-hubs/samples/v2/javascript/README.md +++ b/sdk/notificationhubs/notification-hubs/samples/v2/javascript/README.md @@ -62,7 +62,7 @@ node createInstallation.fcmLegacy.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NOTIFICATIONHUBS_CONNECTION_STRING="" NOTIFICATION_HUB_NAME="" FCM_REGISTRATION_ID="" node createInstallation.fcmLegacy.js +cross-env NOTIFICATIONHUBS_CONNECTION_STRING="" NOTIFICATION_HUB_NAME="" FCM_REGISTRATION_ID="" node createInstallation.fcmLegacy.js ``` ## Next Steps diff --git a/sdk/notificationhubs/notification-hubs/samples/v2/typescript/README.md b/sdk/notificationhubs/notification-hubs/samples/v2/typescript/README.md index d0864007bc65..1966e36b2d16 100644 --- a/sdk/notificationhubs/notification-hubs/samples/v2/typescript/README.md +++ b/sdk/notificationhubs/notification-hubs/samples/v2/typescript/README.md @@ -74,7 +74,7 @@ node dist/createInstallation.fcmLegacy.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NOTIFICATIONHUBS_CONNECTION_STRING="" NOTIFICATION_HUB_NAME="" FCM_REGISTRATION_ID="" node dist/createInstallation.fcmLegacy.js +cross-env NOTIFICATIONHUBS_CONNECTION_STRING="" NOTIFICATION_HUB_NAME="" FCM_REGISTRATION_ID="" node dist/createInstallation.fcmLegacy.js ``` ## Next Steps diff --git a/sdk/oep/arm-oep/package.json b/sdk/oep/arm-oep/package.json index d447a5cb419a..6463d47a196f 100644 --- a/sdk/oep/arm-oep/package.json +++ b/sdk/oep/arm-oep/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/oep/arm-oep/samples/v1-beta/javascript/README.md b/sdk/oep/arm-oep/samples/v1-beta/javascript/README.md index 92d3362aa139..bbc065e64261 100644 --- a/sdk/oep/arm-oep/samples/v1-beta/javascript/README.md +++ b/sdk/oep/arm-oep/samples/v1-beta/javascript/README.md @@ -52,7 +52,7 @@ node energyServicesCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node energyServicesCreateSample.js +cross-env node energyServicesCreateSample.js ``` ## Next Steps diff --git a/sdk/oep/arm-oep/samples/v1-beta/typescript/README.md b/sdk/oep/arm-oep/samples/v1-beta/typescript/README.md index 026003b4b51c..981f9b113d56 100644 --- a/sdk/oep/arm-oep/samples/v1-beta/typescript/README.md +++ b/sdk/oep/arm-oep/samples/v1-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/energyServicesCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/energyServicesCreateSample.js +cross-env node dist/energyServicesCreateSample.js ``` ## Next Steps diff --git a/sdk/onlineexperimentation/arm-onlineexperimentation/package.json b/sdk/onlineexperimentation/arm-onlineexperimentation/package.json index 445e6dbdd98d..111ea6dfc9a9 100644 --- a/sdk/onlineexperimentation/arm-onlineexperimentation/package.json +++ b/sdk/onlineexperimentation/arm-onlineexperimentation/package.json @@ -80,20 +80,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/javascript/README.md b/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/javascript/README.md index c5bd082f1250..94ff1122ce9b 100644 --- a/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/javascript/README.md +++ b/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node onlineExperimentationWorkspacesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node onlineExperimentationWorkspacesCreateOrUpdateSample.js +cross-env node onlineExperimentationWorkspacesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/typescript/README.md b/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/typescript/README.md index c86baa872fa0..0c93812f7589 100644 --- a/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/typescript/README.md +++ b/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/onlineExperimentationWorkspacesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/onlineExperimentationWorkspacesCreateOrUpdateSample.js +cross-env node dist/onlineExperimentationWorkspacesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/onlineexperimentation/onlineexperimentation-rest/package.json b/sdk/onlineexperimentation/onlineexperimentation-rest/package.json index 04b186dad406..282cc7205c2d 100644 --- a/sdk/onlineexperimentation/onlineexperimentation-rest/package.json +++ b/sdk/onlineexperimentation/onlineexperimentation-rest/package.json @@ -65,43 +65,46 @@ "tslib": "^2.6.2" }, "devDependencies": { - "dotenv": "catalog:testing", - "@types/node": "catalog:", - "eslint": "catalog:", - "typescript": "catalog:", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure/dev-tool": "workspace:^", + "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", + "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", - "vitest": "catalog:testing", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-recorder": "workspace:^", - "@azure/dev-tool": "workspace:^", - "@azure/eslint-plugin-azure-sdk": "workspace:^" + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", + "vitest": "catalog:testing" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "lint": "eslint package.json src test", - "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", - "unit-test": "npm run unit-test:node && npm run unit-test:browser", - "unit-test:browser": "npm run build:test && dev-tool run test:vitest --browser", - "unit-test:node": "dev-tool run test:vitest", - "integration-test": "npm run integration-test:node && npm run integration-test:browser", - "integration-test:browser": "echo skipped", - "integration-test:node": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", + "integration-test": "npm run integration-test:node && npm run integration-test:browser", + "integration-test:browser": "echo skipped", + "integration-test:node": "echo skipped", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", + "pack": "pnpm pack 2>&1", + "test": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run unit-test:browser && npm run integration-test", "test:browser": "npm run clean && npm run build:test && npm run unit-test:browser && npm run integration-test:browser", - "minify": "dev-tool run vendored uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js", - "build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run integration-test:node", - "test": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run unit-test:browser && npm run integration-test", + "unit-test": "npm run unit-test:node && npm run unit-test:browser", + "unit-test:browser": "npm run build:test && dev-tool run test:vitest --browser", + "unit-test:node": "dev-tool run test:vitest", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/javascript/README.md b/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/javascript/README.md index 455617be3209..a7cd50cac8d3 100644 --- a/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/javascript/README.md +++ b/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/javascript/README.md @@ -37,7 +37,7 @@ node experimentMetricsManagement.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_ONLINEEXPERIMENTATION_ENDPOINT="" node experimentMetricsManagement.js +cross-env AZURE_ONLINEEXPERIMENTATION_ENDPOINT="" node experimentMetricsManagement.js ``` ## Next Steps diff --git a/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/typescript/README.md b/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/typescript/README.md index 01614826a4ee..59eb3bb306a3 100644 --- a/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/typescript/README.md +++ b/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/typescript/README.md @@ -49,7 +49,7 @@ node dist/experimentMetricsManagement.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_ONLINEEXPERIMENTATION_ENDPOINT="" node dist/experimentMetricsManagement.js +cross-env AZURE_ONLINEEXPERIMENTATION_ENDPOINT="" node dist/experimentMetricsManagement.js ``` ## Next Steps diff --git a/sdk/openai/openai/package.json b/sdk/openai/openai/package.json index 5f6b62fd7269..5d4a42bd0eeb 100644 --- a/sdk/openai/openai/package.json +++ b/sdk/openai/openai/package.json @@ -71,20 +71,20 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"scripts/**/*.mjs\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* *.tsbuildinfo temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"scripts/**/*.mjs\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* *.tsbuildinfo temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"scripts/**/*.mjs\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"scripts/**/*.mjs\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "samples:publish": "dev-tool samples publish -f && node scripts/fixSamples.mjs", "test": "npm run test:node && npm run test:browser", "test:browser": "npm run test:browser:live", + "test:browser:live": "dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser --no-test-proxy", "test:node": "dev-tool run test:vitest --no-test-proxy", "test:node:live": "npm run test:node", - "test:browser:live": "dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser --no-test-proxy", "update-snippets": "dev-tool run update-snippets && node scripts/fixSnippets.mjs" }, "repository": "github:Azure/azure-sdk-for-js", @@ -125,10 +125,14 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "openai": "^5.10.1", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing", "zod": "^3.24.2" diff --git a/sdk/openai/openai/samples/v2-beta/javascript/README.md b/sdk/openai/openai/samples/v2-beta/javascript/README.md index a0cc4ee60773..135e380a3aa2 100644 --- a/sdk/openai/openai/samples/v2-beta/javascript/README.md +++ b/sdk/openai/openai/samples/v2-beta/javascript/README.md @@ -68,7 +68,7 @@ node audioTranscription.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUDIO_FILE_PATH="