-
-
Notifications
You must be signed in to change notification settings - Fork 35
feat: support external module resolution from webpack bundle #121
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
Open
wpessers
wants to merge
7
commits into
nodejs:main
Choose a base branch
from
wpessers:feat/support-external-module-resolution-from-webpack-bundle
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
5d89f8e
feat: add failing webpack test
wpessers de99223
feat: explicitly use native require when bundled with webpack
wpessers 87ae6da
chore: add test:webpack script run command to main test script
wpessers d149a0b
grumpy comment; only run test:webpack in CI on recent-enough Node.js …
trentm 4b8c6f2
node 14.0 also cannot install a working webpack-cli
trentm 6ab04a9
my mistake, this is about the webpack-cli min node, which is >=14.15.0
trentm 78001cd
skip node 14 as well, 4th time's the charm
trentm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,3 +3,4 @@ | |
| /tmp | ||
| /require-in-the-middle-*.tgz | ||
| *.example.js | ||
| test/webpack/dist/ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| 'use strict' | ||
|
|
||
| const assert = require('assert') | ||
|
|
||
| const { Hook } = require('../../') | ||
|
|
||
| const hooked = [] | ||
|
|
||
| // Hook all modules as @opentelemetry/instrumentation does. | ||
| const hook = new Hook('*', function (exports, name, basedir) { | ||
| if (name === 'semver') { | ||
| hooked.push(name) | ||
| exports.patched = true | ||
| } | ||
| return exports | ||
| }) | ||
|
|
||
| const semver = require('semver') | ||
| assert.strictEqual(semver.patched, true) | ||
| assert.deepStrictEqual(hooked, ['semver']) | ||
|
|
||
| hook.unhook() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| 'use strict' | ||
|
|
||
| const path = require('path') | ||
|
|
||
| module.exports = { | ||
| target: 'node', | ||
| mode: 'production', | ||
| entry: path.join(__dirname, 'test.js'), | ||
| output: { | ||
| path: path.join(__dirname, 'dist'), | ||
| filename: 'bundle.js' | ||
| }, | ||
| externals: { | ||
| semver: 'commonjs semver' | ||
| } | ||
| } |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.