Skip to content

Commit

Permalink
feat(instrumentation): re-export initialize from import-in-the-middle
Browse files Browse the repository at this point in the history
Signed-off-by: Connor Pearson <[email protected]>
  • Loading branch information
cjpearson committed Nov 11, 2024
1 parent 72c9af9 commit e1e791a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ All notable changes to experimental packages in this project will be documented

### :rocket: (Enhancement)

* feat(instrumentation): re-export initialize function from import-in-the-middle [#5123](https://github.com/open-telemetry/opentelemetry-js/pull/5123)

### :bug: (Bug Fix)

### :books: (Refine Doc)
Expand Down
3 changes: 2 additions & 1 deletion experimental/packages/opentelemetry-instrumentation/hook.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
// This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021 Datadog, Inc.

import {
initialize,
load,
resolve,
getFormat,
getSource,
} from 'import-in-the-middle/hook.mjs';
export { load, resolve, getFormat, getSource };
export { initialize, load, resolve, getFormat, getSource };

0 comments on commit e1e791a

Please sign in to comment.