Skip to content

Commit

Permalink
Remove core-lro runtime dependency on core-http (Azure#15884)
Browse files Browse the repository at this point in the history
  • Loading branch information
xirzec authored Jun 22, 2021
1 parent 450f924 commit b26a218
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sdk/core/core-lro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@
"sideEffects": false,
"dependencies": {
"@azure/abort-controller": "^1.0.0",
"@azure/core-http": "^1.2.0",
"@azure/core-tracing": "1.0.0-preview.12",
"events": "^3.0.0",
"tslib": "^2.2.0"
},
"devDependencies": {
"@azure/core-http": "^1.2.0",
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
"@azure/dev-tool": "^1.0.0",
"@microsoft/api-extractor": "7.7.11",
Expand Down
7 changes: 4 additions & 3 deletions sdk/core/core-lro/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const banner = [
].join("\n");

const depNames = Object.keys(pkg.dependencies);
const devDepNames = Object.keys(pkg.devDependencies);
const production = process.env.NODE_ENV === "production";

export function nodeConfig(test = false) {
Expand Down Expand Up @@ -59,6 +60,9 @@ export function nodeConfig(test = false) {
baseConfig.input = ["dist-esm/test/*.test.js"];
baseConfig.plugins.unshift(multiEntry({ exports: false }));

// mark devdeps as external
baseConfig.external.push(...devDepNames);

// different output file
baseConfig.output.file = "dist-test/index.node.js";

Expand All @@ -85,9 +89,6 @@ export function browserConfig(test = false) {
banner: banner,
format: "umd",
name: "azurecorelro",
globals: {
"@azure/core-http": "Azure.Core.HTTP"
},
sourcemap: true
},
preserveSymlinks: false,
Expand Down

0 comments on commit b26a218

Please sign in to comment.