Skip to content

Commit

Permalink
fix(api): disable module concatenation in tree-shaking test (#3409)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Dyla <dyladan@users.noreply.github.com>
  • Loading branch information
legendecas and dyladan committed Nov 15, 2022
1 parent 125f11e commit bd56547
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## Unreleased

* test(api): disable module concatenation in tree-shaking test [#3409](https://github.com/open-telemetry/opentelemetry-js/pull/3409) @legendecas

## [1.3.0](https://github.com/open-telemetry/opentelemetry-js-api/compare/v1.2.0...v1.3.0)

* feat(api): merge api-metrics into api [#3374](https://github.com/open-telemetry/opentelemetry-js/pull/3374) @legendecas
Expand Down
2 changes: 2 additions & 0 deletions api/test/tree-shaking/tree-shaking.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ describe('tree-shaking', () => {
optimization: {
// disable minimization so that we can inspect the output easily.
minimize: false,
// disable module concatenation so that variable names will not be mangled.
concatenateModules: false,
}
});

Expand Down

0 comments on commit bd56547

Please sign in to comment.