Skip to content

Commit 4885468

Browse files
authored
refactor(context-async-hooks): use explicit exports (#4786)
* refactor(context-async-hooks): use explicit exports * chore: add changelog entry
1 parent b5409d7 commit 4885468

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ For experimental package changes, see the [experimental CHANGELOG](experimental/
1818

1919
### :house: (Internal)
2020

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

2325
### :rocket: (Enhancement)

packages/opentelemetry-context-async-hooks/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
* limitations under the License.
1515
*/
1616

17-
export * from './AsyncHooksContextManager';
18-
export * from './AsyncLocalStorageContextManager';
17+
export { AsyncHooksContextManager } from './AsyncHooksContextManager';
18+
export { AsyncLocalStorageContextManager } from './AsyncLocalStorageContextManager';

0 commit comments

Comments
 (0)