Skip to content

Commit 64c409d

Browse files
committed
Update dependencies.
1 parent b8a2eca commit 64c409d

3 files changed

Lines changed: 238 additions & 17 deletions

File tree

tools/tsp-client/package-lock.json

Lines changed: 236 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/tsp-client/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"@autorest/openapi-to-typespec": "0.9.0",
5656
"@azure-tools/typespec-autorest": "^0.44.0",
5757
"@azure/core-rest-pipeline": "^1.12.0",
58+
"@azure-tools/rest-api-diff": "^0.1.0",
5859
"@types/yargs": "^17.0.32",
5960
"autorest": "^3.7.1",
6061
"chalk": "^5.3.0",
@@ -71,9 +72,6 @@
7172
"extension": [
7273
"ts"
7374
],
74-
"bundleDependency": [
75-
"openapi-diff"
76-
],
7775
"spec": "test/*.spec.ts",
7876
"loader": "ts-node/esm"
7977
}

tools/tsp-client/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ export async function generateCommand(argv: any) {
286286

287287
export async function compareCommand(argv: any, args: string[]) {
288288
let outputDir = argv["output-dir"];
289-
const openApiDiffPath = await getPathToDependency("openapi-diff");
289+
const openApiDiffPath = await getPathToDependency("@azure-tools/rest-api-diff");
290290
const command = [openApiDiffPath, ...args];
291291
try {
292292
await nodeCommand(outputDir, command);

0 commit comments

Comments
 (0)