Skip to content

Commit

Permalink
Fix quotes in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeharder committed Jun 24, 2019
1 parent 438dfe7 commit d8ad15f
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion sdk/core/abort-controller/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function nodeConfig(test = false) {
};

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down
4 changes: 2 additions & 2 deletions sdk/core/core-amqp/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function nodeConfig(test = false) {
baseConfig.external.push();

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down Expand Up @@ -155,7 +155,7 @@ export function browserConfig(test = false) {
baseConfig.output.file = "test-browser/index.js";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down
4 changes: 2 additions & 2 deletions sdk/eventhub/event-hubs/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function nodeConfig(test = false) {
};

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down Expand Up @@ -155,7 +155,7 @@ export function browserConfig(test = false) {
baseConfig.output.file = "test-browser/index.js";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down
4 changes: 2 additions & 2 deletions sdk/eventhub/event-processor-host/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function nodeConfig(test = false) {
};

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down Expand Up @@ -118,7 +118,7 @@ export function browserConfig(test = false) {
baseConfig.output.file = "test-browser/index.js";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down
4 changes: 2 additions & 2 deletions sdk/identity/identity/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function nodeConfig(test = false) {
baseConfig.external.push("assert");

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down Expand Up @@ -95,7 +95,7 @@ export function browserConfig(test = false, production = false) {
baseConfig.output.file = "test-browser/index.js";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down
4 changes: 2 additions & 2 deletions sdk/servicebus/service-bus/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function nodeConfig({ test = false, production = false } = {}) {
baseConfig.onwarn = ignoreKnownWarnings;

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down Expand Up @@ -168,7 +168,7 @@ export function browserConfig({ test = false, production = false } = {}) {
baseConfig.output.file = "test-browser/index.js";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/storage-blob/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function nodeConfig(test = false) {
baseConfig.context = "null";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down Expand Up @@ -126,7 +126,7 @@ export function browserConfig(test = false, production = false) {
baseConfig.context = "null";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/storage-file/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function nodeConfig(test = false) {
baseConfig.context = "null";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down Expand Up @@ -135,7 +135,7 @@ export function browserConfig(test = false, production = false) {
baseConfig.context = "null";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/storage-queue/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function nodeConfig(test = false) {
baseConfig.context = "null";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down Expand Up @@ -124,7 +124,7 @@ export function browserConfig(test = false, production = false) {
baseConfig.context = "null";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down
4 changes: 2 additions & 2 deletions sdk/template/template/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function nodeConfig(test = false) {
baseConfig.external.push("assert");

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down Expand Up @@ -95,7 +95,7 @@ export function browserConfig(test = false, production = false) {
baseConfig.output.file = "test-browser/index.js";

// Disable tree-shaking of test code. In [email protected], rollup started respecting
// the "sideEffects" field in package.json. Since our package.json sets `sideEffects=false`, this also
// the "sideEffects" field in package.json. Since our package.json sets "sideEffects=false", this also
// applies to test code, which causes all tests to be removed by tree-shaking.
baseConfig.treeshake = false;
} else if (production) {
Expand Down

0 comments on commit d8ad15f

Please sign in to comment.