-
Notifications
You must be signed in to change notification settings - Fork 167
Closed
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomersreleased
Description
package.json
{
"type": "module",
"dependencies": {
"import-in-the-middle": "^1.8.1"
},
"devDependencies": {
"@vercel/nft": "^0.27.2"
}
}test.js
import { register } from 'module';
register('import-in-the-middle/hook.mjs', import.meta.url);build.js
import { nodeFileTrace } from '@vercel/nft';
const { fileList } = await nodeFileTrace(['./test.js']);
console.log(fileList)Running > node build.js
Outputs Set(1) { 'test.js' }
But import-in-the-middle/hook.mjs and all of it's dependencies should be included.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomersreleased