Skip to content

Commit

Permalink
Fixup keyvault packages
Browse files Browse the repository at this point in the history
  • Loading branch information
xirzec committed Oct 4, 2019
1 parent c96277e commit 44f5675
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
1 change: 1 addition & 0 deletions sdk/keyvault/keyvault-certificates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"@azure/core-arm": "1.0.0-preview.3",
"@azure/core-http": "1.0.0-preview.3",
"@azure/core-paging": "1.0.0-preview.2",
"@azure/core-tracing": "1.0.0-preview.3",
"tslib": "^1.9.3"
},
"devDependencies": {
Expand Down
7 changes: 5 additions & 2 deletions sdk/keyvault/keyvault-certificates/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ import {
isNode,
userAgentPolicy,
RequestOptionsBase,
tracingPolicy,
tracingPolicy
} from "@azure/core-http";

import {
getTracer,
Span
} from "@azure/core-http";
} from "@azure/core-tracing";

import {
Certificate,
Expand Down
1 change: 1 addition & 0 deletions sdk/keyvault/keyvault-keys/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
"@azure/core-http": "1.0.0-preview.3",
"@azure/core-paging": "1.0.0-preview.2",
"@azure/identity": "1.0.0-preview.3",
"@azure/core-tracing": "1.0.0-preview.3",
"tslib": "^1.9.3"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions sdk/keyvault/keyvault-keys/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ import {
isNode,
userAgentPolicy,
RequestOptionsBase,
tracingPolicy,
getTracer,
Span
tracingPolicy
} from "@azure/core-http";

import { getTracer, Span } from "@azure/core-tracing";

import "@azure/core-paging";
import { PageSettings, PagedAsyncIterableIterator } from "@azure/core-paging";

Expand Down
1 change: 1 addition & 0 deletions sdk/keyvault/keyvault-secrets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
"@azure/core-http": "1.0.0-preview.3",
"@azure/core-paging": "1.0.0-preview.2",
"@azure/identity": "1.0.0-preview.3",
"@azure/core-tracing": "1.0.0-preview.3",
"tslib": "^1.9.3"
},
"devDependencies": {
Expand Down
12 changes: 4 additions & 8 deletions sdk/keyvault/keyvault-secrets/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ import {
getDefaultProxySettings,
isNode,
userAgentPolicy,
tracingPolicy,
getTracer,
Span
tracingPolicy
} from "@azure/core-http";

import { getTracer, Span } from "@azure/core-tracing";

import "@azure/core-paging";
import { PageSettings, PagedAsyncIterableIterator } from "@azure/core-paging";
import {
Expand Down Expand Up @@ -77,11 +77,7 @@ export {
UpdateSecretOptions
};

export {
ProxyOptions,
RetryOptions,
TelemetryOptions
};
export { ProxyOptions, RetryOptions, TelemetryOptions };

/**
* The client to interact with the KeyVault secrets functionality
Expand Down

0 comments on commit 44f5675

Please sign in to comment.