Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: ESM support for instrumentation #3698
feat: ESM support for instrumentation #3698
Changes from 44 commits
43fd59e
e5215fe
3c51c6d
8444af3
e4478d9
1434b27
a533f9f
a43089b
85a2e8f
e0b5c44
63477c5
1188c02
33e544c
bfe51f5
7110c37
3ddb3a9
3f3d9a2
2936a16
4a10129
50363c5
c9922c3
b722486
4ac1ee1
a346531
1ca6b55
4401576
86b6837
da694c7
1612855
e924c99
b894bcd
68c43c9
a2a74f8
a529c8c
ddc8dc5
42eb5ba
4f71df8
6a052b1
58d34c0
33409da
1f017b0
16109d3
bcaef1c
c590efc
59047bd
0167a10
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update the limitations section below which tells
ECMA script modules (using
import) is not supported as of now
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what does this mean? How can one use ESM without import?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It means that the limitations section requires changes in this PR because it removes one of them.
Before this PR ESM/
import
was not supported and only CJS/require
worked.Th limitation with bundlers stays.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
huh, super, thanks for the clarification :) a panic mode was already about to arise :D