Remove unnecessary @azure/core-http deps (#23671)

This commit is contained in:
Jeff Fisher 2022-11-02 14:18:47 -05:00 коммит произвёл GitHub
Родитель 5f7273d649
Коммит 731ac27db8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
11 изменённых файлов: 9 добавлений и 11 удалений

Просмотреть файл

@ -28,6 +28,9 @@
"name": "communication-common",
"path": "sdk/communication/communication-common"
},
{
"path": "sdk/communication/communication-email"
},
{
"name": "communication-identity",
"path": "sdk/communication/communication-identity"

Просмотреть файл

@ -9,7 +9,6 @@
"license": "ISC",
"dependencies": {
"@azure/app-configuration": "^1.2.0-beta.2",
"@azure/core-http": "^2.0.0",
"@azure/test-utils-perf": "^1.0.0",
"dotenv": "^8.2.0"
},

Просмотреть файл

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import { generateUuid } from "@azure/core-http";
import { v4 as generateUuid } from "uuid";
import { PerfOptionDictionary, executeParallel } from "@azure/test-utils-perf";
import { AppConfigTest } from "./appConfigBase.spec";

Просмотреть файл

@ -49,8 +49,7 @@
"dependencies": {
"@azure/core-auth": "^1.3.0",
"@azure/core-client": "^1.3.2",
"@azure/core-http": "^2.0.0",
"@azure/core-rest-pipeline": "^1.3.2",
"@azure/core-rest-pipeline": "^1.8.0",
"@azure/communication-common": "^2.1.0",
"@azure/logger": "^1.0.0",
"tslib": "^1.9.3",

Просмотреть файл

@ -28,7 +28,7 @@
"@azure/communication-sms": "latest",
"dotenv": "latest",
"@azure/communication-common": "^2.1.0",
"@azure/core-http": "^2.0.0",
"@azure/core-rest-pipeline": "^1.8.0",
"@azure/identity": "^2.0.1"
}
}

Просмотреть файл

@ -32,7 +32,7 @@
"@azure/communication-sms": "latest",
"dotenv": "latest",
"@azure/communication-common": "^2.1.0",
"@azure/core-http": "^2.0.0",
"@azure/core-rest-pipeline": "^1.8.0",
"@azure/identity": "^2.0.1"
},
"devDependencies": {

Просмотреть файл

@ -105,7 +105,6 @@
"@azure/abort-controller": "^1.0.0",
"@azure/core-auth": "^1.3.0",
"@azure/core-client": "^1.0.0",
"@azure/core-http": "^2.0.0",
"@azure/core-lro": "^2.2.0",
"@azure/core-paging": "^1.1.1",
"@azure/core-rest-pipeline": "^1.1.0",

Просмотреть файл

@ -13,7 +13,6 @@
"dependencies": {
"applicationinsights": "^1.8.8",
"@azure/service-bus": "latest",
"@azure/core-http": "latest",
"dotenv": "^8.2.0",
"minimist": "^1.2.5",
"uuid": "^8.3.0"

Просмотреть файл

@ -17,7 +17,7 @@ import {
import { EventEmitter } from "stream";
import { EventContext, ReceiverEvents } from "rhea-promise";
import parsedArgs from "minimist";
import { generateUuid } from "@azure/core-http";
import { v4 as generateUuid } from "uuid";
const messageNumberPropertyName = "messageNumber";

Просмотреть файл

@ -9,7 +9,6 @@
"license": "ISC",
"dependencies": {
"@azure/app-configuration": "^1.3.1",
"@azure/core-http": "^2.0.0",
"@azure/test-utils-perf": "^1.0.0",
"dotenv": "^8.2.0",
"@azure/template": "^1.0.11-beta.1 || ^1.0.12-beta.1",

Просмотреть файл

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import { generateUuid } from "@azure/core-http";
import { v4 as generateUuid } from "uuid";
import { PerfOptionDictionary } from "@azure/test-utils-perf";
import { TemplateTest } from "./templateBase.spec";