Skip to content

Commit

Permalink
refactor(context-async-hooks): use explicit exports (open-telemetry#4786
Browse files Browse the repository at this point in the history
)

* refactor(context-async-hooks): use explicit exports

* chore: add changelog entry
  • Loading branch information
pichlermarc authored and Zirak committed Sep 14, 2024
1 parent 05d7ad0 commit 45fd9f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ For experimental package changes, see the [experimental CHANGELOG](experimental/

### :house: (Internal)

* refactor(context-async-hooks): use explicit exports [#4785](https://github.com/open-telemetry/opentelemetry-js/pull/4786) @pichlermarc

## 1.25.0

### :rocket: (Enhancement)
Expand Down
4 changes: 2 additions & 2 deletions packages/opentelemetry-context-async-hooks/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
* limitations under the License.
*/

export * from './AsyncHooksContextManager';
export * from './AsyncLocalStorageContextManager';
export { AsyncHooksContextManager } from './AsyncHooksContextManager';
export { AsyncLocalStorageContextManager } from './AsyncLocalStorageContextManager';

0 comments on commit 45fd9f1

Please sign in to comment.